index.wxss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. margin: 2vw 0 0 0;
  33. }
  34. .content .one .one_2 .one_2_1 {
  35. padding: 0 2vw;
  36. width: 70vw;
  37. }
  38. .content .one .one_2 .one_2_1 .list {
  39. display: flex;
  40. width: 66vw;
  41. margin: 0 0 2vw 0;
  42. padding: 2vw;
  43. box-shadow: 0 0 5px var(--f1Color);
  44. border-radius: 5px;
  45. }
  46. .content .one .one_2 .one_2_1 .list .img {
  47. width: 20vw;
  48. }
  49. .content .one .one_2 .one_2_1 .list .img .image {
  50. width: 20vw;
  51. height: 20vw;
  52. border-radius: 5px;
  53. }
  54. .content .one .one_2 .one_2_1 .list .info {
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. width: 45vw;
  59. padding: 0 0 0 2vw;
  60. }
  61. .content .one .one_2 .one_2_1 .list .info .name {
  62. font-size: var(--font15Size);
  63. }
  64. .content .one .one_2 .one_2_1 .list .info .num {
  65. display: flex;
  66. justify-content: space-between;
  67. }
  68. .content .one .one_2 .one_2_1 .list .info .num .left {
  69. font-size: var(--font14Size);
  70. color: var(--fF0Color);
  71. }
  72. .content .one .one_2 .one_2_1 .list .info .num .right {
  73. font-size: var(--font12Size);
  74. color: var(--f85Color);
  75. }
  76. .scroll-view {
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. right: 0;
  81. bottom: 0;
  82. }
  83. .scroll-view .list-scroll-view {
  84. display: flex;
  85. flex-direction: column;
  86. }
  87. .is_bottom {
  88. width: 100%;
  89. text-align: center;
  90. }
  91. .is_bottom text {
  92. padding: 2vw 0;
  93. display: inline-block;
  94. color: var(--f85Color);
  95. font-size: var(--font14Size);
  96. }