index.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .components.ProjectListItem {
  2. padding-bottom: 30px;
  3. border-bottom: 2px solid #eee;
  4. > .Img {
  5. width: 260px;
  6. position: relative;
  7. overflow: hidden;
  8. margin-right: 20px;
  9. > view {
  10. width: 100%;
  11. padding-bottom: 60%;
  12. background: #eee;
  13. position: relative;
  14. overflow: hidden;
  15. border-radius: 8px;
  16. > image {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. }
  21. }
  22. > .flex-item {
  23. > .Name {
  24. align-items: center;
  25. > .flex-item {
  26. margin-right: 10px;
  27. > text {
  28. display: block;
  29. font-size: 28px;
  30. font-weight: bold;
  31. color: #000;
  32. line-height: 40px;
  33. white-space: nowrap;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. }
  37. }
  38. > text {
  39. font-size: 24px;
  40. line-height: 40px;
  41. color: #000;
  42. &:last-child {
  43. color: red;
  44. }
  45. }
  46. }
  47. > .Address {
  48. display: block;
  49. font-size: 24px;
  50. color: #666;
  51. line-height: 40px;
  52. white-space: nowrap;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. }
  56. > .Tags {
  57. font-size: 0;
  58. white-space: nowrap;
  59. > text {
  60. display: inline-block;
  61. vertical-align: middle;
  62. font-size: 16px;
  63. padding: 0 10px;
  64. line-height: 36px;
  65. background: #FBAB57;
  66. color: #333;
  67. margin-right: 10px;
  68. }
  69. }
  70. > .ShareInfo {
  71. font-size: 0;
  72. white-space: nowrap;
  73. margin-top: 10px;
  74. > text {
  75. display: inline-block;
  76. vertical-align: middle;
  77. font-size: 24px;
  78. color: #333;
  79. line-height: 40px;
  80. margin-left: 10px;
  81. &:first-child {
  82. margin-left: 0;
  83. }
  84. }
  85. > .Users {
  86. display: inline-block;
  87. vertical-align: middle;
  88. font-size: 0;
  89. white-space: nowrap;
  90. margin-left: 30px;
  91. > view {
  92. display: inline-block;
  93. vertical-align: middle;
  94. width: 40px;
  95. height: 40px;
  96. background: #eee;
  97. border-radius: 100%;
  98. margin-left: -10px;
  99. position: relative;
  100. &:nth-child(1) {
  101. z-index: 1;
  102. margin-left: 0;
  103. }
  104. &:nth-child(2) {
  105. z-index: 2;
  106. }
  107. &:nth-child(3) {
  108. z-index: 3;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. }