index.wxss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @charset "UTF-8";
  2. /* 水平间距 */
  3. /* 水平间距 */
  4. .content .one {
  5. height: 100vh;
  6. display: flex;
  7. flex-direction: row;
  8. }
  9. .content .one .one_1 {
  10. position: relative;
  11. width: 25vw;
  12. background-color: #fafafa;
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .content .one .one_1 .list {
  17. text-align: center;
  18. padding: 2.5vw 0;
  19. border-bottom: 1px solid var(--f1Color);
  20. }
  21. .content .one .one_1 .list text {
  22. font-size: var(--font14Size);
  23. }
  24. .content .one .one_1 .listActive {
  25. background-color: var(--fffColor);
  26. }
  27. .content .one .one_2 {
  28. flex-grow: 1;
  29. position: relative;
  30. display: flex;
  31. flex-direction: column;
  32. }
  33. .content .one .one_2 .one_2_1 {
  34. padding: 0 2vw;
  35. width: 70vw;
  36. }
  37. .content .one .one_2 .one_2_1 .list {
  38. display: flex;
  39. width: 66vw;
  40. margin: 0 0 2vw 0;
  41. padding: 2vw;
  42. box-shadow: 0 0 5px var(--f1Color);
  43. border-radius: 5px;
  44. }
  45. .content .one .one_2 .one_2_1 .list .img {
  46. width: 20vw;
  47. }
  48. .content .one .one_2 .one_2_1 .list .img .image {
  49. width: 20vw;
  50. height: 20vw;
  51. border-radius: 5px;
  52. }
  53. .content .one .one_2 .one_2_1 .list .info {
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-evenly;
  57. width: 45vw;
  58. padding: 0 0 0 2vw;
  59. }
  60. .content .one .one_2 .one_2_1 .list .info .name {
  61. font-size: var(--font15Size);
  62. margin: 0 0 1vw 0;
  63. }
  64. .content .one .one_2 .one_2_1 .list .info .num {
  65. display: flex;
  66. justify-content: space-between;
  67. margin: 1vw 0 0 0;
  68. }
  69. .content .one .one_2 .one_2_1 .list .info .num .left {
  70. font-size: var(--font14Size);
  71. color: var(--fF0Color);
  72. }
  73. .content .one .one_2 .one_2_1 .list .info .num .right {
  74. font-size: var(--font12Size);
  75. color: var(--f85Color);
  76. }
  77. .scroll-view {
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. }
  84. .scroll-view .list-scroll-view {
  85. display: flex;
  86. flex-direction: column;
  87. }
  88. .is_bottom {
  89. width: 100%;
  90. text-align: center;
  91. }
  92. .is_bottom text {
  93. padding: 2vw 0;
  94. display: inline-block;
  95. color: var(--f85Color);
  96. font-size: var(--font14Size);
  97. }