index.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 .other {
  46. font-size: var(--font14Size);
  47. }
  48. .content .two .tabsList .list .list_2 .other text:last-child {
  49. color: var(--f85Color);
  50. }
  51. .content .two .tabsList .list .bottom {
  52. text-align: center;
  53. padding: 1vw 0;
  54. }
  55. .content .two .tabsList .list .bottom button {
  56. margin: 0 5px 0 0;
  57. }
  58. .scroll-view {
  59. position: absolute;
  60. top: 0;
  61. left: 0;
  62. right: 0;
  63. bottom: 0;
  64. }
  65. .scroll-view .list-scroll-view {
  66. display: flex;
  67. flex-direction: column;
  68. }
  69. .is_bottom {
  70. text-align: center;
  71. }
  72. .is_bottom text {
  73. padding: 2vw 0;
  74. display: inline-block;
  75. color: var(--f85Color);
  76. font-size: var(--font14Size);
  77. }