projectType.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. .projectType {
  2. position: relative;
  3. width: 100%;
  4. .topArea {
  5. margin: auto;
  6. width: 1000px;
  7. padding: 24px 20px 31px 24px;
  8. background-color: #fff;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. .title {
  13. font-size:23px;
  14. font-weight:500;
  15. color:rgba(29,42,58,1);
  16. line-height:32px;
  17. }
  18. .line {
  19. margin: 26px 0;
  20. width:960px;
  21. height:2px;
  22. background: rgba(0,0,0,0.06);;
  23. }
  24. .userImg {
  25. width: 107px;
  26. height: 107px;
  27. img {
  28. width: 107px;
  29. height: 107px;
  30. border-radius: 53.5px;
  31. }
  32. }
  33. .score {
  34. margin-top: 18px;
  35. font-size:30px;
  36. font-weight:bold;
  37. color:rgba(48,142,255,1);
  38. line-height:35px;
  39. span {
  40. font-size:15px;
  41. font-weight:500;
  42. color:rgba(48,142,255,1);
  43. line-height:21px;
  44. }
  45. }
  46. .tips {
  47. margin-top: 2px;
  48. font-size:14px;
  49. font-weight:600;
  50. color:rgba(48,142,255,1);
  51. line-height:20px;
  52. span {
  53. font-size:14px;
  54. font-weight:600;
  55. color:rgba(48,142,255,1);
  56. line-height:20px;
  57. }
  58. }
  59. .starBox {
  60. margin-top: 21px;
  61. }
  62. }
  63. .bodyArea {
  64. margin: auto;
  65. width: 1000px;
  66. .evaluateList {
  67. margin-top: 3px;
  68. .cell {
  69. margin-top: 10px;
  70. width: 100%;
  71. display: flex;
  72. justify-content: flex-start;
  73. align-items: center;
  74. height: 100%;
  75. padding: 43px 30px;
  76. background-color: #fff;
  77. .left {
  78. width: 54px;
  79. height: 54px;
  80. flex-shrink: 0;
  81. font-size: 0;
  82. img {
  83. width: 54px;
  84. height: 54px;
  85. border-radius: 27px;
  86. }
  87. }
  88. .center {
  89. margin-left: 10px;
  90. display: flex;
  91. justify-content: space-around;
  92. flex-direction: column;
  93. width: 650px;
  94. height: 54px;
  95. .nameBox {
  96. display: flex;
  97. height: 22px;
  98. .name {
  99. font-size:16px;
  100. font-weight:600;
  101. color:rgba(51,51,51,1);
  102. line-height:22px;
  103. }
  104. .tips {
  105. margin-left: 5px;
  106. height:22px;
  107. background:rgba(243,243,243,1);
  108. border-radius:2px;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. p {
  113. padding: 0 10px ;
  114. font-size: 12px;
  115. transform-origin: center;
  116. transform: scale(11/12);
  117. font-weight:500;
  118. color:rgba(136,136,136,1);
  119. }
  120. }
  121. }
  122. .eva {
  123. font-size:14px;
  124. font-weight:400;
  125. color:rgba(51,51,51,1);
  126. line-height:20px;
  127. text-align: left;
  128. white-space: nowrap;
  129. overflow: hidden;
  130. text-overflow: ellipsis;
  131. }
  132. }
  133. .right {
  134. width: 210px;
  135. display: flex;
  136. justify-content: space-around;
  137. align-items: flex-end;
  138. flex-direction: column;
  139. .time {
  140. font-size:12px;
  141. font-weight:400;
  142. color:rgba(153,153,153,1);
  143. line-height:17px;
  144. }
  145. .starBox {
  146. margin-top: 10px;
  147. display: flex;
  148. .star {
  149. margin-left: 14px;
  150. &.icon {
  151. width: 21px;
  152. height: 21px;
  153. background-size: cover;
  154. background-repeat: no-repeat;
  155. &.fill {
  156. background-image: url("~@/assets/img/credit/starFill.png");
  157. }
  158. &.none {
  159. background-image: url("~@/assets/img/credit/starNone.png");
  160. }
  161. &.half {
  162. background-image: url("~@/assets/img/credit/starHalf.png");
  163. }
  164. }
  165. }
  166. }
  167. }
  168. }
  169. }
  170. }
  171. .bottonArea {
  172. margin-top: 28px;
  173. text-align: center;
  174. }
  175. }