index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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: 14px;
  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: 16px;
  50. font-weight: bold;
  51. margin: 0 0 1vw 0;
  52. }
  53. .brief {
  54. margin: 0 0 1vw 0;
  55. font-size: 12px;
  56. color: #858585;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. -webkit-line-clamp: 3;
  60. word-break: break-all;
  61. display: -webkit-box;
  62. -webkit-box-orient: vertical;
  63. }
  64. .other {
  65. font-size: 14px;
  66. color: #858585;
  67. }
  68. }
  69. .list_2 {
  70. text-align: right;
  71. .image {
  72. width: 100px;
  73. height: 100px;
  74. overflow: hidden;
  75. border-radius: 10px;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. }
  82. }
  83. }
  84. }