index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @charset "UTF-8";
  2. /* 水平间距 */
  3. /* 水平间距 */
  4. .content {
  5. display: flex;
  6. flex-direction: column;
  7. width: 100vw;
  8. height: 100vh;
  9. }
  10. .content .one {
  11. width: 100%;
  12. }
  13. .content .two {
  14. padding: 1vw 2vw;
  15. background-color: var(--f9Color);
  16. }
  17. .content .two .grid {
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. padding: 5px 0 0 0;
  22. margin: 5px;
  23. background-color: var(--mainColor);
  24. border-radius: 10px;
  25. }
  26. .content .two .grid .image {
  27. width: 25px;
  28. height: 25px;
  29. }
  30. .content .two .grid .text {
  31. font-size: var(--font14Size);
  32. margin-top: 5px;
  33. }
  34. .content .thr {
  35. position: relative;
  36. flex-grow: 1;
  37. background-color: var(--f9Color);
  38. }
  39. .content .thr .thr_1 {
  40. display: flex;
  41. justify-content: space-between;
  42. flex-wrap: wrap;
  43. padding: 2vw;
  44. }
  45. .content .thr .thr_1 .list {
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: inherit;
  49. width: 43vw;
  50. padding: 2vw;
  51. margin: 0 0 2vw 0;
  52. border-radius: 10px;
  53. background-color: var(--mainColor);
  54. }
  55. .content .thr .thr_1 .list .image {
  56. width: 100%;
  57. height: 40vw;
  58. border-top-right-radius: 10px;
  59. border-top-left-radius: 10px;
  60. }
  61. .content .thr .thr_1 .list .name {
  62. font-size: var(--font14Size);
  63. }
  64. .scroll-view {
  65. position: absolute;
  66. top: 0;
  67. left: 0;
  68. right: 0;
  69. bottom: 0;
  70. }
  71. .scroll-view .list-scroll-view {
  72. display: flex;
  73. flex-direction: column;
  74. }
  75. .is_bottom {
  76. text-align: center;
  77. }
  78. .is_bottom text {
  79. padding: 2vw 0;
  80. display: inline-block;
  81. color: var(--f85Color);
  82. font-size: var(--font14Size);
  83. }