index.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .main {
  2. height: 81.9vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:last-child {
  8. margin: 0;
  9. }
  10. .two {
  11. .a {
  12. display: flex;
  13. flex-direction: column;
  14. height: 74vh;
  15. .two_1 {
  16. background-color: #f1f1f1;
  17. width: 92vw;
  18. padding: 2vw;
  19. input {
  20. font-size: 16px;
  21. }
  22. }
  23. .two_2 {
  24. width: 96vw;
  25. flex-grow: 1;
  26. position: relative;
  27. .scroll-view {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. right: 0;
  32. bottom: 0;
  33. .list-scroll-view {
  34. display: flex;
  35. flex-wrap: wrap;
  36. align-content: flex-start;
  37. justify-content: space-between;
  38. .list {
  39. background-color: #ffffff;
  40. margin: 0 0 2vw 0;
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. width: 92vw;
  45. padding: 2vw;
  46. .list_1 {
  47. width: 70vw;
  48. .name {
  49. font-size: 18px;
  50. font-weight: bold;
  51. margin: 0 0 1vw 0;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. -webkit-line-clamp: 2;
  55. word-break: break-all;
  56. display: -webkit-box;
  57. -webkit-box-orient: vertical;
  58. }
  59. .brief {
  60. margin: 0 0 1vw 0;
  61. font-size: 15px;
  62. color: #858585;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. -webkit-line-clamp: 3;
  66. word-break: break-all;
  67. display: -webkit-box;
  68. -webkit-box-orient: vertical;
  69. }
  70. .other {
  71. font-size: 15px;
  72. color: #858585;
  73. text {
  74. padding: 0 1vw 0 0;
  75. }
  76. }
  77. }
  78. .list_2 {
  79. text-align: right;
  80. padding: 4vw 0 0 0;
  81. .image {
  82. width: 100px;
  83. height: 100px;
  84. overflow: hidden;
  85. border-radius: 10px;
  86. }
  87. }
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }
  94. }