index.wxss 2.0 KB

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