index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. position: relative;
  21. flex-grow: 1;
  22. background-color: var(--f9Color);
  23. }
  24. .content .two .tabsList {
  25. position: relative;
  26. width: 100vw;
  27. height: 82vh;
  28. }
  29. .content .two .tabsList .list {
  30. background-color: #fff;
  31. border: 1px solid var(--f5Color);
  32. padding: 2vw;
  33. margin: 0 2vw 2vw 2vw;
  34. border-radius: 5px;
  35. }
  36. .content .two .tabsList .list .list_1 {
  37. display: flex;
  38. justify-content: space-between;
  39. padding: 2vw 0;
  40. font-size: var(--font14Size);
  41. }
  42. .content .two .tabsList .list .list_1 .status {
  43. color: var(--fF0Color);
  44. }
  45. .content .two .tabsList .list .list_2 {
  46. display: flex;
  47. }
  48. .content .two .tabsList .list .list_2 .left .image {
  49. width: 20vw;
  50. height: 20vw;
  51. border-radius: 5px;
  52. }
  53. .content .two .tabsList .list .list_2 .right {
  54. width: 70vw;
  55. margin: 0 0 0 2vw;
  56. }
  57. .content .two .tabsList .list .list_2 .right .right_1 {
  58. display: flex;
  59. justify-content: space-between;
  60. margin: 2vw 0;
  61. }
  62. .content .two .tabsList .list .list_2 .right .right_1 .name {
  63. font-size: var(--font14Size);
  64. }
  65. .content .two .tabsList .list .list_2 .right .right_1 .num {
  66. display: flex;
  67. flex-direction: column;
  68. align-items: flex-end;
  69. }
  70. .content .two .tabsList .list .list_2 .right .right_1 .num text:last-child {
  71. font-size: var(--font13Size);
  72. color: var(--f85Color);
  73. }
  74. .content .two .tabsList .list .list_2 .right .right_2 {
  75. font-size: var(--font12Size);
  76. color: var(--f85Color);
  77. }
  78. .content .two .tabsList .list .bottom {
  79. text-align: center;
  80. padding: 1vw 0;
  81. }
  82. .content .two .tabsList .list .bottom button {
  83. margin: 0 5px 0 0;
  84. }
  85. .scroll-view {
  86. position: absolute;
  87. top: 0;
  88. left: 0;
  89. right: 0;
  90. bottom: 0;
  91. }
  92. .scroll-view .list-scroll-view {
  93. display: flex;
  94. flex-direction: column;
  95. }
  96. .is_bottom {
  97. text-align: center;
  98. }
  99. .is_bottom text {
  100. padding: 2vw 0;
  101. display: inline-block;
  102. color: var(--f85Color);
  103. font-size: var(--font14Size);
  104. }