index.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. .origin-container {
  2. display: flex;
  3. // float:right;
  4. justify-content: flex-end;
  5. .origin-left {
  6. display: flex;
  7. width: 63.48vw;
  8. justify-content: center;
  9. flex-wrap: wrap;
  10. .search-container {
  11. width: 44.9vw;
  12. margin-top: 11.29vh;
  13. margin-bottom: 2.13vh;
  14. }
  15. .origin-map {
  16. position: relative;
  17. width: 63.34vw;
  18. height: 52.63vh;
  19. border-radius: 40px;
  20. overflow: hidden;
  21. background-color: rgba(117, 117, 117, 0.8);
  22. // img {
  23. // width: 100%;
  24. // height: 102%;
  25. // }
  26. }
  27. .image-container {
  28. width: 100%;
  29. height: 11.66vh;
  30. margin-top: 6.38vh;
  31. }
  32. .bench-button {
  33. width: 41.14vw;
  34. height: 6.67vh;
  35. line-height: 6.67vh;
  36. background: linear-gradient(
  37. 358deg,
  38. rgba(255, 255, 255, 0.63) 0%,
  39. rgba(255, 255, 255, 0) 66%,
  40. rgba(84, 84, 84, 0) 100%
  41. );
  42. border-radius: 79px 79px 79px 79px;
  43. position: relative;
  44. top: -20.37vh;
  45. z-index: 3;
  46. color: #fff;
  47. display: flex;
  48. align-items: center;
  49. .btn-item {
  50. height: 100%;
  51. img {
  52. width: 2.23vw;
  53. }
  54. }
  55. i {
  56. font-size: 30px;
  57. }
  58. }
  59. .bench-button:before {
  60. background: linear-gradient(
  61. 179deg,
  62. rgba(255, 255, 255, 0.36) 0%,
  63. rgba(255, 255, 255, 0) 100%
  64. );
  65. border-radius: 79px 79px 79px 79px;
  66. opacity: 1;
  67. content: "";
  68. position: absolute;
  69. top: 0;
  70. left: 0;
  71. width: 100%;
  72. height: 100%;
  73. z-index: -1;
  74. backdrop-filter: blur(2px);
  75. }
  76. }
  77. .origin-right {
  78. // margin-top: 11.29vh;
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: center;
  82. padding: 20px;
  83. }
  84. .origin-basic {
  85. height: 26.38vh;
  86. margin-bottom: 1.85vh;
  87. background: rgba(0, 0, 0, 0.49);
  88. border-radius: 2.08vw;
  89. border: 1px solid #707070;
  90. margin-left: 1.56vw;
  91. }
  92. .origin-list {
  93. width: 26.36vw;
  94. // height: 60.92vh;
  95. margin-left: 1.56vw;
  96. }
  97. .origin-list {
  98. .item-box {
  99. width: 100%;
  100. padding: 1.04vw 1.66vh 1.04vw;
  101. background: rgba(0, 0, 0, 0.2);
  102. border-radius: 20px 20px 20px 20px;
  103. opacity: 1;
  104. display: flex;
  105. justify-content: space-between;
  106. .item-right {
  107. width: 12vw;
  108. }
  109. .item-title {
  110. height: 4.17vh;
  111. font-size: 28px;
  112. font-family: PingFang SC-Bold, PingFang SC;
  113. font-weight: 400;
  114. color: #fbfbfb;
  115. line-height: 4.17vh;
  116. }
  117. .item-description {
  118. margin-top: 0.37vh;
  119. height: 2.31vh;
  120. font-size: 16px;
  121. font-family: PingFang SC-Regular, PingFang SC;
  122. font-weight: 400;
  123. color: #dfdfdf;
  124. line-height: 2.31vh;
  125. }
  126. .item-tag {
  127. display: flex;
  128. margin-top: 0vh;
  129. width: 10vw;
  130. .tag {
  131. margin-bottom: 0.2vh;
  132. //width: 3.13vw;
  133. font-size: xx-small;
  134. text-align: center;
  135. background-color: #5d9a6d;
  136. border-radius: 10px;
  137. color: #f2f2f2;
  138. margin-right: 0.2vw;
  139. padding: 5px 10px;
  140. }
  141. }
  142. }
  143. }
  144. }
  145. // .ready {
  146. // color: #65c94c !important;
  147. // font-size: 30px;
  148. // }
  149. // .occupied {
  150. // color: #478bc3 !important;
  151. // font-size: 30px;
  152. // }
  153. // .offline {
  154. // color: #cdd0cf !important;
  155. // font-size: 30px;
  156. // }
  157. // .offline {
  158. // color: red !important;
  159. // font-size: 30px;
  160. // }
  161. .item-image {
  162. width: 7.29vw;
  163. height: 7.29vw;
  164. border-radius: 15px;
  165. border: 2px solid #dfdfdf;
  166. img {
  167. width: 100%;
  168. height: 100%;
  169. border-radius: 15px;
  170. }
  171. }
  172. *::-webkit-scrollbar {
  173. /*滚动条整体样式*/
  174. width: 6px;
  175. /*高宽分别对应横竖滚动条的尺寸*/
  176. height: 1px;
  177. }
  178. *::-webkit-scrollbar-thumb {
  179. /*滚动条里面小方块*/
  180. border-radius: 5px;
  181. box-shadow: inset 0 0 5px rgba(180, 180, 180, 0.5);
  182. background: rgba(180, 180, 180, 0.2);
  183. }
  184. *::-webkit-scrollbar-track {
  185. /*滚动条里面轨道*/
  186. /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
  187. border-radius: 10px;
  188. background: transparent;
  189. }