new_list.less 1.7 KB

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