list.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. .main {
  2. height: var(--twoHeight);
  3. background-color: var(--mainColor);
  4. .one {
  5. display: flex;
  6. flex-direction: row;
  7. padding: 2vw;
  8. border-bottom: 1px solid var(--f1Color);
  9. .one_1 {
  10. flex-grow: 1;
  11. input {
  12. padding: 1vw 0 2vw 2vw;
  13. background-color: var(--f1Color);
  14. border-radius: 5px;
  15. }
  16. }
  17. .one_2 {
  18. width: 20vw;
  19. button {
  20. width: 100%;
  21. padding: 2vw;
  22. font-size: var(--font14Size);
  23. }
  24. }
  25. }
  26. .two {
  27. flex-grow: 1;
  28. position: relative;
  29. width: 96vw;
  30. margin: 2vw;
  31. background-color: var(--mainColor);
  32. .list {
  33. display: flex;
  34. flex-direction: column;
  35. border: 2px dashed #FFA500;
  36. padding: 2vw;
  37. margin: 0 0 2vw 0;
  38. border-radius: 10px;
  39. .list_1 {
  40. display: flex;
  41. justify-content: space-around;
  42. .image {
  43. width: 60px;
  44. height: 60px;
  45. border-radius: 90px;
  46. }
  47. .content {
  48. width: 62vw;
  49. .name {
  50. font-size: var(--font16Size);
  51. font-weight: bold;
  52. margin: 0 0 1vw 0;
  53. }
  54. .other {
  55. font-size: var(--font14Size);
  56. margin: 0 0 1vw 0;
  57. .other_1 {
  58. padding: 0 0 1vw 0;
  59. }
  60. .other_1 text:nth-child(1) {
  61. color: #666;
  62. }
  63. }
  64. }
  65. }
  66. .btn {
  67. margin: 2vw 0 0 0;
  68. text-align: center;
  69. button {
  70. margin: 0 0 0 2vw;
  71. background-color: #FFA500;
  72. border-radius: 25px;
  73. }
  74. button:last-child {
  75. background-color: #FF4500;
  76. }
  77. }
  78. }
  79. .list:nth-child(2n) {
  80. border: 2px dashed #FF4500;
  81. }
  82. }
  83. }
  84. .scroll-view {
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. right: 0;
  89. bottom: 0;
  90. .list-scroll-view {
  91. display: flex;
  92. flex-direction: column;
  93. }
  94. }
  95. .dialog {
  96. .dialog_1 {
  97. .name {
  98. text-align: center;
  99. font-size: var(--font18Szie);
  100. font-weight: bold;
  101. margin: 3vw 0;
  102. }
  103. .image {
  104. text-align: center;
  105. height: 18vh;
  106. overflow: hidden;
  107. .qrcode {
  108. height: 22vh;
  109. position: absolute;
  110. left: 32vw;
  111. }
  112. }
  113. .remark {
  114. text-align: center;
  115. font-size: 15px;
  116. margin: 0 0 4vw 0;
  117. }
  118. }
  119. }