index.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. position: relative;
  42. width: 48%;
  43. margin: 0 10px 10px 0;
  44. }
  45. .content .two .two_1 .list .image {
  46. width: 100%;
  47. height: 100px;
  48. overflow: hidden;
  49. border-radius: 5px;
  50. box-shadow: 0 0 5px var(--rgbf1f);
  51. margin: 0 0 5px 0;
  52. }
  53. .content .two .two_1 .list .name {
  54. font-size: 14px;
  55. color: var(--rgbfff);
  56. margin: 0 0 5px 0;
  57. }
  58. .content .two .two_1 .list .other {
  59. display: flex;
  60. color: var(--rgbfff);
  61. font-size: 12px;
  62. justify-content: space-between;
  63. }
  64. .content .two .two_1 .list .vip {
  65. position: absolute;
  66. top: 0;
  67. left: 1vw;
  68. }
  69. .content .two .two_1 .list .vip ._span {
  70. font-size: 14px;
  71. font-weight: bold;
  72. color: var(--rgbffd);
  73. }
  74. .content .two .two_1 .list:nth-child(2n) {
  75. margin: 0 0 10px 0;
  76. }
  77. .scroll-view {
  78. position: absolute;
  79. top: 0;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. }
  84. .scroll-view .list-scroll-view {
  85. display: flex;
  86. flex-direction: column;
  87. padding: 0 2vw;
  88. }
  89. .is_bottom {
  90. text-align: center;
  91. }
  92. .is_bottom text {
  93. padding: 2vw 0;
  94. display: inline-block;
  95. color: #858585;
  96. font-size: 14px;
  97. }
  98. .drawer_one {
  99. display: flex;
  100. flex-direction: column;
  101. width: 77vw;
  102. height: 92vh;
  103. }
  104. .drawer_one .drawer_one_1 {
  105. flex-grow: 1;
  106. overflow-y: auto;
  107. }
  108. .drawer_one .drawer_one_1 .uni-forms-item {
  109. margin: 0;
  110. }
  111. .drawer_one .drawer_one_1 .label {
  112. font-weight: bold;
  113. margin: 0 0 5px 0;
  114. }
  115. .drawer_one .drawer_one_2 {
  116. text-align: center;
  117. padding: 2vw 0;
  118. }
  119. .drawer_one .drawer_one_2 button {
  120. width: 30%;
  121. margin: 0 2vw;
  122. line-height: 2.5;
  123. }
  124. .drawer_one .drawer_one_2 button:nth-child(1) {
  125. background-color: var(--rgbfa4);
  126. color: var(--rgbfff);
  127. }
  128. .drawer_one .drawer_one_2 button:nth-child(2) {
  129. background-color: var(--rgb67c);
  130. color: var(--rgbfff);
  131. }