index.wxss 1.5 KB

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