index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. }
  38. .main .two .two_1 {
  39. padding: 1vw 0;
  40. }
  41. .main .two .two_2 {
  42. display: flex;
  43. justify-content: space-between;
  44. flex-wrap: wrap;
  45. position: relative;
  46. }
  47. .main .two .two_2 .list {
  48. width: 30%;
  49. position: relative;
  50. margin: 0 0 10px 0;
  51. }
  52. .main .two .two_2 .list .image {
  53. width: 100%;
  54. height: 70px;
  55. border-radius: 5px;
  56. }
  57. .main .two .two_2 .list .name {
  58. position: absolute;
  59. bottom: 10px;
  60. width: 100%;
  61. text-align: center;
  62. left: 0;
  63. color: var(--rgb000);
  64. font-size: 12px;
  65. }