index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content {
  9. background-color: var(--rgb111);
  10. }
  11. .content .one {
  12. background-color: var(--rgb111);
  13. display: flex;
  14. padding: 2vw;
  15. }
  16. .content .one .one_1 {
  17. flex-grow: 1;
  18. }
  19. .content .one .one_1 input {
  20. border: 1px solid var(--rgbf1f);
  21. height: 30px;
  22. border-radius: 2px;
  23. padding: 0 5px;
  24. font-size: 12px;
  25. color: var(--rgbfff);
  26. }
  27. .content .one .one_2 button {
  28. height: 100%;
  29. background-color: var(--rgbfa4);
  30. color: var(--rgbfff);
  31. }
  32. .content .two {
  33. flex-grow: 1;
  34. position: relative;
  35. }
  36. .content .two .two_1 {
  37. display: flex;
  38. flex-wrap: wrap;
  39. }
  40. .content .two .two_1 .list {
  41. width: 48%;
  42. margin: 0 10px 10px 0;
  43. }
  44. .content .two .two_1 .list .image {
  45. width: 100%;
  46. height: 100px;
  47. overflow: hidden;
  48. border-radius: 5px;
  49. box-shadow: 0 0 5px var(--rgbf1f);
  50. margin: 0 0 5px 0;
  51. }
  52. .content .two .two_1 .list .name {
  53. font-size: 14px;
  54. color: var(--rgbfff);
  55. margin: 0 0 5px 0;
  56. }
  57. .content .two .two_1 .list .other {
  58. display: flex;
  59. color: var(--rgbfff);
  60. font-size: 12px;
  61. justify-content: space-between;
  62. }
  63. .content .two .two_1 .list:nth-child(2n) {
  64. margin: 0 0 10px 0;
  65. }
  66. .scroll-view {
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. }
  73. .scroll-view .list-scroll-view {
  74. display: flex;
  75. flex-direction: column;
  76. padding: 0 2vw;
  77. }
  78. .is_bottom {
  79. text-align: center;
  80. }
  81. .is_bottom text {
  82. padding: 2vw 0;
  83. display: inline-block;
  84. color: #858585;
  85. font-size: 14px;
  86. }
  87. .drawer_one {
  88. display: flex;
  89. flex-direction: column;
  90. width: 77vw;
  91. height: 92vh;
  92. }
  93. .drawer_one .drawer_one_1 {
  94. flex-grow: 1;
  95. overflow-y: auto;
  96. }
  97. .drawer_one .drawer_one_1 .uni-forms-item {
  98. margin: 0;
  99. }
  100. .drawer_one .drawer_one_1 .label {
  101. font-weight: bold;
  102. margin: 0 0 5px 0;
  103. }
  104. .drawer_one .drawer_one_2 {
  105. text-align: center;
  106. padding: 2vw 0;
  107. }
  108. .drawer_one .drawer_one_2 button {
  109. width: 30%;
  110. height: 100%;
  111. margin: 0 2vw;
  112. }
  113. .drawer_one .drawer_one_2 button:nth-child(1) {
  114. background-color: var(--rgbfa4);
  115. color: var(--rgbfff);
  116. }
  117. .drawer_one .drawer_one_2 button:nth-child(2) {
  118. background-color: var(--rgb67c);
  119. color: var(--rgbfff);
  120. }