index.wxss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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: 14px;
  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: 16px;
  56. font-weight: bold;
  57. margin: 0 0 1vw 0;
  58. }
  59. .main .two .a .two_2 .scroll-view .list-scroll-view .list .list_1 .brief {
  60. margin: 0 0 1vw 0;
  61. font-size: 12px;
  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. .main .two .a .two_2 .scroll-view .list-scroll-view .list .list_1 .other {
  71. font-size: 14px;
  72. color: #858585;
  73. }
  74. .main .two .a .two_2 .scroll-view .list-scroll-view .list .list_2 {
  75. text-align: right;
  76. }
  77. .main .two .a .two_2 .scroll-view .list-scroll-view .list .list_2 .image {
  78. width: 100px;
  79. height: 100px;
  80. overflow: hidden;
  81. border-radius: 10px;
  82. }