index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. width: 45vw;
  55. padding: 0 0 0 2vw;
  56. }
  57. .content .one .one_2 .one_2_1 .list .info .name {
  58. font-size: var(--font15Size);
  59. margin: 0 0 1vw 0;
  60. }
  61. .content .one .one_2 .one_2_1 .list .info .num {
  62. font-size: var(--font14Size);
  63. color: var(--f85Color);
  64. margin: 0 0 1vw 0;
  65. }
  66. .scroll-view {
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. }
  73. .scroll-view .list-scroll-view {
  74. display: flex;
  75. flex-direction: column;
  76. }
  77. .is_bottom {
  78. width: 100%;
  79. text-align: center;
  80. }
  81. .is_bottom text {
  82. padding: 2vw 0;
  83. display: inline-block;
  84. color: var(--f85Color);
  85. font-size: var(--font14Size);
  86. }