index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .main {
  9. background-color: var(--rgb000);
  10. display: flex;
  11. flex-direction: column;
  12. width: 100vw;
  13. height: 92vh;
  14. }
  15. .main .one {
  16. background-color: var(--rgb111);
  17. display: flex;
  18. padding: 5px;
  19. }
  20. .main .one .one_1 {
  21. flex-grow: 1;
  22. }
  23. .main .one .one_1 input {
  24. border: 1px solid var(--rgbf1f);
  25. height: 30px;
  26. border-radius: 2px;
  27. padding: 0 5px;
  28. font-size: 12px;
  29. }
  30. .main .one .one_2 button {
  31. height: 100%;
  32. background-color: var(--rgbfa4);
  33. color: var(--rgbfff);
  34. }
  35. .main .two {
  36. position: relative;
  37. flex-grow: 1;
  38. }
  39. .main .two .two_0 {
  40. margin: 0 0 10px 0;
  41. padding: 0 5px;
  42. }
  43. .main .two .two_1 .swiper {
  44. height: 200px;
  45. overflow: hidden;
  46. }
  47. .main .two .two_1 .list .image {
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .main .two .two_2 {
  52. display: flex;
  53. flex-direction: row;
  54. flex-wrap: wrap;
  55. justify-content: space-between;
  56. }
  57. .main .two .two_2 .list {
  58. text-align: center;
  59. width: 18%;
  60. margin: 0 0 10px 0;
  61. }
  62. .main .two .two_2 .list .image {
  63. width: 100%;
  64. height: 64px;
  65. border-radius: 90%;
  66. margin: 0 0 5px 0;
  67. }
  68. .main .two .two_2 .list .name {
  69. font-size: 12px;
  70. color: #ffffff;
  71. }
  72. .scroll-view {
  73. position: absolute;
  74. top: 0;
  75. left: 0;
  76. right: 0;
  77. bottom: 0;
  78. }
  79. .scroll-view .list-scroll-view {
  80. display: flex;
  81. flex-direction: column;
  82. }