index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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;
  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: #f1f1f1;
  18. }
  19. .main .one input {
  20. font-size: 16px;
  21. }
  22. .main .two {
  23. flex-grow: 1;
  24. position: relative;
  25. width: 96vw;
  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-wrap: wrap;
  37. align-content: flex-start;
  38. justify-content: space-between;
  39. }
  40. .main .two .scroll-view .list-scroll-view .list {
  41. background-color: #ffffff;
  42. margin: 0 0 2vw 0;
  43. padding: 2vw;
  44. display: flex;
  45. flex-direction: column;
  46. width: 96vw;
  47. }
  48. .main .two .scroll-view .list-scroll-view .list .list_1 {
  49. display: flex;
  50. flex-direction: row;
  51. justify-content: space-between;
  52. font-size: 14px;
  53. margin: 0 0 1vw 0;
  54. color: #858585;
  55. }
  56. .main .two .scroll-view .list-scroll-view .list .list_1 .name {
  57. width: 70vw;
  58. }
  59. .main .two .scroll-view .list-scroll-view .list .list_2 {
  60. margin: 0 0 3vw 0;
  61. font-size: 18px;
  62. font-weight: bold;
  63. }
  64. .main .two .scroll-view .list-scroll-view .list .list_3 {
  65. display: flex;
  66. flex-direction: row;
  67. justify-content: space-between;
  68. font-size: 14px;
  69. color: #858585;
  70. }
  71. .main .two .scroll-view .list-scroll-view .list .list_3 .btn button {
  72. font-size: 14px;
  73. background-color: transparent;
  74. color: #334790;
  75. }
  76. .main .two .scroll-view .list-scroll-view .list:last-child {
  77. margin: 0;
  78. }