index.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .main {
  2. height: var(--thrHeight);
  3. background-color: var(--bgColor);
  4. .one {
  5. display: flex;
  6. flex-direction: row;
  7. width: 96vw;
  8. padding: 2vw;
  9. margin: 0 0 2vw 0;
  10. background-color: var(--f1Color);
  11. .one_1 {
  12. width: 10vw;
  13. text-align: center;
  14. image {
  15. width: 7vw;
  16. height: 7vw;
  17. position: relative;
  18. top: 1vw;
  19. }
  20. }
  21. .one_2 {
  22. flex-grow: 1;
  23. input {
  24. padding: 1vw 2vw 1.6vw 2vw;
  25. border-radius: 2px;
  26. font-size: var(--txtSize);
  27. background-color: var(--bgColor);
  28. }
  29. }
  30. }
  31. .two {
  32. flex-grow: 1;
  33. position: relative;
  34. .list {
  35. background-color: var(--f9Color);
  36. margin: 0 2vw 2vw 2vw;
  37. padding: 2vw;
  38. display: flex;
  39. flex-direction: row;
  40. .list_1 {
  41. width: 25vw;
  42. .image {
  43. width: 100%;
  44. height: 12vh;
  45. border: 1px solid var(--f1Color);
  46. }
  47. }
  48. .list_2 {
  49. width: 65vw;
  50. flex-grow: 1;
  51. padding: 0 0 0 2vw;
  52. .name {
  53. font-size: var(--titleSize);
  54. font-weight: bold;
  55. margin: 0 0 1vw 0;
  56. line-height: 25px;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. -webkit-line-clamp: 2;
  60. word-break: break-all;
  61. display: -webkit-box;
  62. -webkit-box-orient: vertical;
  63. .status {
  64. display: inline-block;
  65. background-color: var(--redColor);
  66. color: var(--whiteColor);
  67. padding: 0.5vw 1vw;
  68. margin: 0 1vw 0 0;
  69. font-size: var(--btnSize);
  70. border-radius: 5px;
  71. }
  72. }
  73. .other {
  74. margin: 0 0 1vw 0;
  75. .other_1 {
  76. font-size: var(--txtSize);
  77. margin: 0 0 1vw 0;
  78. text {
  79. color: var(--labelColor);
  80. }
  81. text:last-child {
  82. color: var(--txtColor);
  83. }
  84. }
  85. }
  86. }
  87. }
  88. }
  89. }
  90. .scroll-view {
  91. position: absolute;
  92. top: 0;
  93. left: 0;
  94. right: 0;
  95. bottom: 0;
  96. .list-scroll-view {
  97. display: flex;
  98. flex-direction: column;
  99. }
  100. }
  101. .suspension {
  102. position: fixed;
  103. width: 96vw;
  104. bottom: 9vh;
  105. right: 1vw;
  106. text-align: right;
  107. .mymatch {
  108. display: inline-block;
  109. width: 10vw;
  110. padding: 1vw;
  111. text-align: center;
  112. background-color: green;
  113. color: #fff;
  114. font-size: 14px;
  115. border-radius: 5px;
  116. }
  117. }