index.wxss 1.8 KB

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