info.scss 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. .dynamic-info-wrapper-mobile {
  2. // margin-top: 10px;
  3. width: 100%;
  4. }
  5. .dynamic-info-main {
  6. margin-left: 10px;
  7. margin-right: 10px;
  8. background-color: #fff;
  9. border-radius: 10px;
  10. padding: 13px 10px 18px;
  11. }
  12. .dynamic-info-user {
  13. display: flex;
  14. align-items: center;
  15. }
  16. .dynamic-info-user-avatar {
  17. width: 38px;
  18. height: 38px;
  19. border-radius: 100%;
  20. overflow: hidden;
  21. img {
  22. width: 100%;
  23. height: 100%;
  24. border-radius: 100%;
  25. }
  26. }
  27. .dynamic-info-user-info {
  28. margin-left: 10px;
  29. flex: 1;
  30. margin-right: 10px;
  31. }
  32. .dynamic-info-user-nickname {
  33. font-size: 14px;
  34. font-family: PingFangSC, PingFangSC-Semibold;
  35. font-weight: 600;
  36. color: #222222;
  37. line-height: 20px;
  38. }
  39. // .dynamic-info-user-level {
  40. // display: inline-block;
  41. // background: #ffd257;
  42. // border-radius: 3px;
  43. // height: 13px;
  44. // padding: 0 5px;
  45. // font-size: 10px;
  46. // font-family: FontName, FontName-Regular;
  47. // font-weight: 400;
  48. // color: #222222;
  49. // line-height: 13px;
  50. // letter-spacing: -0.95px;
  51. // }
  52. .dynamic-info-user-title {
  53. margin-top: 3px;
  54. font-size: 11px;
  55. font-family: PingFangSC, PingFangSC-Regular;
  56. font-weight: 400;
  57. text-align: left;
  58. color: #999999;
  59. line-height: 16px;
  60. }
  61. .dynamic-info-user-menu {
  62. width: 20px;
  63. height: 20px;
  64. background: url("~@/assets/img/dynamic/menu.png") no-repeat 50% 50%;
  65. background-size: 100% auto;
  66. }
  67. .dynamic-info-content {
  68. margin-top: 9px;
  69. font-size: 15px;
  70. font-family: PingFangSC, PingFangSC-Medium;
  71. font-weight: 500;
  72. color: #222222;
  73. line-height: 21px;
  74. }
  75. .dynamic-info-type-area {
  76. margin-top: 8px;
  77. margin-bottom: 8px;
  78. }
  79. .dynamic-info-type {
  80. display: inline-block;
  81. padding: 0 10px;
  82. line-height: 24px;
  83. height: 24px;
  84. background: rgba(48, 142, 255, 0.11);
  85. border-radius: 3px;
  86. font-size: 11px;
  87. font-family: PingFangSC, PingFangSC-Regular;
  88. font-weight: 400;
  89. color: #308eff;
  90. }
  91. .dynamic-info-img-list {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. flex-wrap: wrap;
  96. }
  97. .dynamic-info-img-item {
  98. width: 27.8vw;
  99. height:27.8vw;
  100. position: relative;
  101. overflow: hidden;
  102. border-radius: 6px;
  103. background-position: 50% top;
  104. background-repeat: no-repeat;
  105. background-size:auto 100%;
  106. margin-bottom: 10px;
  107. }
  108. .dynamic-info-resources-link {
  109. margin-top: 10px;
  110. background: rgba(244, 245, 249, 0.8);
  111. border-radius: 10px;
  112. padding: 7px 10px 8px;
  113. display: flex;
  114. align-items: center;
  115. }
  116. .dynamic-info-resources-img {
  117. width: 34px;
  118. height: 34px;
  119. border-radius: 5px;
  120. overflow: hidden;
  121. img {
  122. width: 100%;
  123. height: 100%;
  124. border-radius: 5px;
  125. }
  126. }
  127. .dynamic-info-resources-title {
  128. flex: 1;
  129. height: 34px;
  130. line-height: 34px;
  131. margin-left: 10px;
  132. font-size: 14px;
  133. font-family: PingFangSC, PingFangSC-Regular;
  134. font-weight: 400;
  135. text-align: left;
  136. color: #222222;
  137. overflow: hidden;
  138. white-space: nowrap;
  139. text-overflow: ellipsis;
  140. }
  141. .dynamic-info-like {
  142. margin-top: 15px;
  143. display: flex;
  144. font-size: 14px;
  145. font-family: PingFangSC, PingFangSC-Regular;
  146. font-weight: 400;
  147. color: #222222;
  148. }
  149. .dynamic-info-like-item {
  150. height: 20px;
  151. padding-left: 23px;
  152. display: flex;
  153. align-items: center;
  154. }
  155. .dynamic-info-like-count {
  156. background: url("~@/assets/img/dynamic/like.png") no-repeat left 50%;
  157. background-size: auto 100%;
  158. }
  159. .dynamic-info-comment-count {
  160. background: url("~@/assets/img/dynamic/comment.png") no-repeat left 50%;
  161. background-size: auto 100%;
  162. margin-left: 30px;
  163. }
  164. .dynamic-comment-main {
  165. margin-left: 10px;
  166. margin-right: 10px;
  167. }
  168. .dynamic-comment-title {
  169. margin-top: 9px;
  170. margin-bottom: 5px;
  171. font-size: 16px;
  172. font-family: PingFangSC, PingFangSC-Medium;
  173. font-weight: 500;
  174. text-align: left;
  175. color: #222222;
  176. line-height: 22px;
  177. }
  178. .dynamic-comment-list {
  179. background: #ffffff;
  180. margin-bottom: 20px;
  181. border-radius: 10px;
  182. }
  183. .dynamic-comment-item {
  184. display: flex;
  185. padding: 21px 10px 0px;
  186. &:nth-last-child(1) {
  187. .dynamic-comment-content {
  188. &::after {
  189. display: none;
  190. }
  191. }
  192. }
  193. }
  194. .dynamic-comment-avatar {
  195. width: 40px;
  196. height: 40px;
  197. border-radius: 40px;
  198. overflow: hidden;
  199. img {
  200. width: 40px;
  201. height: 40px;
  202. border-radius: 40px;
  203. }
  204. }
  205. .dynamic-comment-info {
  206. flex: 1;
  207. margin-left: 10px;
  208. }
  209. .dynamic-comment-item-top {
  210. display: flex;
  211. align-items: center;
  212. }
  213. .dynamic-comment-nickname {
  214. flex: 1;
  215. margin-right: 10px;
  216. font-size: 14px;
  217. font-family: PingFangSC, PingFangSC-Regular;
  218. font-weight: 400;
  219. text-align: left;
  220. color: #666666;
  221. line-height: 20px;
  222. }
  223. .dynamic-comment-time {
  224. font-size: 12px;
  225. font-family: PingFangSC, PingFangSC-Regular;
  226. font-weight: 400;
  227. text-align: center;
  228. color: #999999;
  229. line-height: 17px;
  230. margin-right: 4px;
  231. }
  232. .dynamic-comment-more {
  233. width: 20px;
  234. height: 20px;
  235. background: url("~@/assets/img/dynamic/menu.png") no-repeat 50% 50%;
  236. background-size: 100% auto;
  237. }
  238. .dynamic-comment-content {
  239. // padding-right: 10px;
  240. margin-top: 4px;
  241. position: relative;
  242. overflow: hidden;
  243. font-size: 15px;
  244. font-family: PingFangSC, PingFangSC-Regular;
  245. font-weight: 400;
  246. text-align: left;
  247. color: #333333;
  248. line-height: 1.5em;
  249. padding-bottom: 18px;
  250. &::after {
  251. content: "";
  252. position: absolute;
  253. left: 0;
  254. right: 0;
  255. bottom: 0;
  256. height: 1px;
  257. background-color: #000;
  258. opacity: 0.08;
  259. transform: translateY(50%);
  260. }
  261. }
  262. .dynamic-info-resources-area {
  263. // margin-top: 10px;
  264. background: rgba(244, 245, 249, 0.8);
  265. border-radius: 10px;
  266. padding: 18px 10px 20px;
  267. }
  268. .resources-top {
  269. display: flex;
  270. justify-content: space-between;
  271. align-items: center;
  272. }
  273. .resources-title {
  274. font-size: 14px;
  275. font-family: PingFangSC, PingFangSC-Regular;
  276. font-weight: 400;
  277. text-align: left;
  278. color: #222222;
  279. line-height: 20px;
  280. }
  281. .resources-price {
  282. font-size: 14px;
  283. font-family: PingFangSC, PingFangSC-Regular;
  284. font-weight: 400;
  285. text-align: center;
  286. color: #308eff;
  287. line-height: 20px;
  288. }
  289. .resource-tag {
  290. margin-top: 11px;
  291. }
  292. .resources-tag-item {
  293. display: inline-block;
  294. line-height: 1;
  295. padding: 10px 5px;
  296. background-color: rgba(255, 255, 255, 0.8);
  297. border-radius: 3px;
  298. margin-right: 5px;
  299. opacity: 0.8;
  300. font-size: 11px;
  301. font-family: PingFangSC, PingFangSC-Regular;
  302. font-weight: 400;
  303. // text-align: right;
  304. color: #666666
  305. }
  306. .resource-company {
  307. margin-top: 15px;
  308. display: flex;
  309. }
  310. .resource-company-img {
  311. width: 18px;
  312. height: 18px;
  313. border-radius: 9px;
  314. overflow: hidden;
  315. img {
  316. width: 18px;
  317. height: 18px;
  318. border-radius: 9px;
  319. }
  320. }
  321. .resource-company-name {
  322. flex: 1;
  323. margin-left: 5px;
  324. font-size: 11px;
  325. font-family: PingFangSC, PingFangSC-Regular;
  326. font-weight: 400;
  327. text-align: left;
  328. color: #666666;
  329. line-height: 16px;
  330. }
  331. .dynamic-bottom{
  332. position:fixed;
  333. left: 0;
  334. right: 0;
  335. bottom: 0;
  336. height:155px;
  337. background:url('~@/assets/img/dynamic/bg.png') repeat-x left bottom;
  338. }
  339. .dynamic-bottom-btn{
  340. margin:40px auto 0 ;
  341. width:350px;
  342. height:78px;
  343. background:url('~@/assets/img/dynamic/btn.png') no-repeat 50% 50%;
  344. }