new_list.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .new2 .body {
  2. margin-top: 90px;
  3. padding: 10px 0;
  4. }
  5. .new2 .body .list .list-item {
  6. text-decoration: none;
  7. color: black;
  8. display: flex;
  9. justify-content: flex-start;
  10. align-items: start;
  11. padding-bottom: 10px;
  12. margin-bottom: 10px;
  13. border-bottom: 1px solid #e6e6e6;
  14. }
  15. .new2 .body .list-header{
  16. position: relative;
  17. height: 160px;
  18. margin-bottom: 20px;
  19. background-size: cover;
  20. -webkit-background-size: 100% 160px;
  21. -moz-background-size: 100% 160px;
  22. background-position: center center;
  23. div{
  24. position: relative;
  25. top: 110px;
  26. left: 10px;
  27. color: #fff;
  28. h3{
  29. font-size: 16px;
  30. margin-bottom: 5px;
  31. }
  32. }
  33. }
  34. .new2 .body .list .list-item:hover {
  35. color: #2382ff;
  36. }
  37. .new2 .body .list .list-item .item-img {
  38. flex: 1;
  39. padding: 0 20px;
  40. }
  41. @media screen and (max-width: 768px) {
  42. .new2 .body .list .list-item .item-img {
  43. padding: 0 10px;
  44. }
  45. }
  46. .new2 .body .list .list-item .item-img img {
  47. width: 100%;
  48. border-radius: 5px;
  49. }
  50. .new2 .body .list .list-item .item-img img:hover {
  51. transform: scale(1.1);
  52. }
  53. .new2 .body .list .list-item .item-detail {
  54. flex: 4;
  55. height: 100%;
  56. position: relative;
  57. overflow: hidden;
  58. }
  59. @media screen and (max-width: 768px) {
  60. .new2 .body .list .list-item .item-detail {
  61. flex: 2;
  62. }
  63. }
  64. .new2 .body .list .list-item .item-detail .title {
  65. font-weight: 400;
  66. }
  67. @media screen and (max-width: 768px) {
  68. .new2 .body .list .list-item .item-detail .title {
  69. white-space: normal;
  70. display: -webkit-box;
  71. -webkit-box-orient: vertical;
  72. -webkit-line-clamp: 2;
  73. }
  74. }
  75. .new2 .body .list .list-item .item-detail .time {
  76. font-size: 12px;
  77. color: #777;
  78. margin-top: 5px;
  79. }
  80. .new2 .body .list .list-item .item-detail .time span {
  81. margin-left: 5px;
  82. }