index.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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(--rgb111);
  10. display: flex;
  11. flex-direction: row;
  12. width: 96vw;
  13. height: 92vh;
  14. padding: 0 2vw;
  15. }
  16. .main .one {
  17. width: 24vw;
  18. color: var(--rgbfff);
  19. margin: 0 10px 0 0;
  20. background-color: var(--rgb000);
  21. overflow-y: auto;
  22. }
  23. .main .one .list ._span {
  24. display: inline-block;
  25. width: 100%;
  26. height: 40px;
  27. line-height: 40px;
  28. text-align: center;
  29. font-size: 14px;
  30. }
  31. .main .two {
  32. flex-grow: 1;
  33. color: var(--rgbfff);
  34. background-color: var(--rgb000);
  35. padding: 0 2vw;
  36. overflow-y: auto;
  37. position: relative;
  38. }
  39. .main .two .two_1 {
  40. padding: 1vw 0;
  41. }
  42. .main .two .two_2 {
  43. display: flex;
  44. flex-wrap: wrap;
  45. position: relative;
  46. }
  47. .main .two .two_2 .list {
  48. width: 30%;
  49. height: 70px;
  50. overflow: hidden;
  51. position: relative;
  52. margin: 0 10px 10px 0;
  53. box-shadow: 0 0 5px var(--rgbf1f);
  54. border-radius: 5px;
  55. }
  56. .main .two .two_2 .list .image {
  57. width: 100%;
  58. height: 100%;
  59. border-radius: 5px;
  60. }
  61. .main .two .two_2 .list .name {
  62. position: absolute;
  63. bottom: 10px;
  64. width: 100%;
  65. text-align: center;
  66. left: 0;
  67. color: var(--rgbfff);
  68. font-size: 12px;
  69. font-family: monospace;
  70. }
  71. .main .two .two_2 .list:nth-child(3n) {
  72. margin: 0 0 10px 0;
  73. }
  74. .scroll-view {
  75. position: absolute;
  76. top: 0;
  77. left: 0;
  78. right: 0;
  79. bottom: 0;
  80. }
  81. .scroll-view .list-scroll-view {
  82. display: flex;
  83. flex-direction: column;
  84. padding: 0 2vw;
  85. }
  86. .is_bottom {
  87. text-align: center;
  88. }
  89. .is_bottom text {
  90. padding: 2vw 0;
  91. display: inline-block;
  92. color: #858585;
  93. font-size: 14px;
  94. }