index.wxss 1.6 KB

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