index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-between;
  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. }
  63. .content .one .one_2 .one_2_1 .list .info .num {
  64. display: flex;
  65. justify-content: space-between;
  66. }
  67. .content .one .one_2 .one_2_1 .list .info .num .left {
  68. font-size: var(--font14Size);
  69. color: var(--fF0Color);
  70. }
  71. .content .one .one_2 .one_2_1 .list .info .num .right {
  72. font-size: var(--font12Size);
  73. color: var(--f85Color);
  74. }
  75. .scroll-view {
  76. position: absolute;
  77. top: 0;
  78. left: 0;
  79. right: 0;
  80. bottom: 0;
  81. }
  82. .scroll-view .list-scroll-view {
  83. display: flex;
  84. flex-direction: column;
  85. }
  86. .is_bottom {
  87. width: 100%;
  88. text-align: center;
  89. }
  90. .is_bottom text {
  91. padding: 2vw 0;
  92. display: inline-block;
  93. color: var(--f85Color);
  94. font-size: var(--font14Size);
  95. }