index.module.scss 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. .Home {
  2. width: 100%;
  3. height: 100vh;
  4. // height: 100vh;
  5. // background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(207, 202, 189, 1));
  6. background-image: url('../../assets/img/bg.png');
  7. background-size: 100% 100%;
  8. overflow-y: auto;
  9. &::-webkit-scrollbar {
  10. width: 6px;
  11. }
  12. &::-webkit-scrollbar-thumb {
  13. border-radius: 10px;
  14. background-color: #741A1A;
  15. }
  16. &::-webkit-scrollbar-track {
  17. border-radius: 10px;
  18. }
  19. :global {
  20. .modelTxtBox {
  21. z-index: 10;
  22. opacity: 0;
  23. pointer-events: none;
  24. position: fixed;
  25. top: 0;
  26. left: 0;
  27. width: 100vw;
  28. height: 100vh;
  29. }
  30. .activeTxtBox {
  31. opacity: 1;
  32. pointer-events: auto;
  33. }
  34. .title {
  35. width: 100%;
  36. height: 90px;
  37. // background-color: #741A1A;
  38. background-image: url('../../assets/img/topBg.png');
  39. background-size: 100% 100%;
  40. display: flex;
  41. align-items: center;
  42. position: relative;
  43. .logo {
  44. width: 195px;
  45. margin-left: 70px;
  46. &>img {
  47. width: 100%;
  48. }
  49. }
  50. }
  51. .mainBox {
  52. width: 1400px;
  53. margin: 0px auto 50px;
  54. // height: calc(100% - 170px);
  55. position: relative;
  56. .searchBox {
  57. .searchBoxTop {
  58. display: flex;
  59. height: 40px;
  60. &>div {
  61. cursor: pointer;
  62. height: 40px;
  63. line-height: 40px;
  64. cursor: pointer;
  65. padding-left: 26px;
  66. color: #777676;
  67. position: relative;
  68. margin-right: 40px;
  69. &::before {
  70. content: '';
  71. position: absolute;
  72. top: 7px;
  73. left: 0;
  74. width: 20px;
  75. height: 20px;
  76. background-image: url('../../assets/img/jiantou.png');
  77. background-size: 100% 100%;
  78. }
  79. }
  80. .active {
  81. color: #9F5342;
  82. pointer-events: none;
  83. &::before {
  84. background-image: url('../../assets/img/jiantouAc.png');
  85. }
  86. &::after {
  87. content: '';
  88. position: absolute;
  89. bottom: -10px;
  90. left: 43px;
  91. width: 20px;
  92. height: 20px;
  93. background-image: url('../../assets/img/topAc.png');
  94. background-size: 100% 100%;
  95. z-index: 99;
  96. }
  97. }
  98. }
  99. .searchBoxAcBox {
  100. padding: 0px 0 12px;
  101. border-bottom: 1px solid #C7AA68;
  102. .searchBoxAcMain {
  103. width: 100%;
  104. overflow-x: auto;
  105. &::-webkit-scrollbar {
  106. width: 6px;
  107. height: 6px;
  108. }
  109. &::-webkit-scrollbar-thumb {
  110. border-radius: 10px;
  111. background-color: #c1a463;
  112. }
  113. &::-webkit-scrollbar-track {
  114. border-radius: 10px;
  115. }
  116. .appSw {
  117. background-color: #9F5342;
  118. // display: flex;
  119. // flex-wrap: wrap;
  120. .swiper-slide {
  121. // display: inline-block;
  122. width: auto !important;
  123. .row {
  124. cursor: pointer;
  125. padding: 8px 30px;
  126. color: #E1CEA4;
  127. font-size: 14px;
  128. position: relative;
  129. &::before {
  130. content: '';
  131. position: absolute;
  132. top: 50%;
  133. right: 0;
  134. transform: translateY(-50%);
  135. width: 1px;
  136. height: 16px;
  137. background-color: #E1CEA4;
  138. }
  139. }
  140. &:last-child {
  141. .row {
  142. &::before {
  143. background-color: transparent;
  144. }
  145. }
  146. }
  147. }
  148. .active {
  149. background-color: #C1A463;
  150. color: #fff;
  151. pointer-events: none;
  152. }
  153. }
  154. }
  155. }
  156. .seatchinputBox {
  157. height: 40px;
  158. margin: 10px 0 15px;
  159. display: flex;
  160. .search {
  161. // background-color: #fff;
  162. background-image: url('../../assets/img/Union.png');
  163. background-size: 100% 100%;
  164. position: relative;
  165. width: calc(100% - 120px);
  166. padding-left: 10px;
  167. .ant-input-affix-wrapper {
  168. background-color: transparent;
  169. border: none;
  170. height: 40px;
  171. line-height: 40px;
  172. }
  173. .ant-input-affix-wrapper-focused,
  174. .ant-input-affix-wrapper:focus {
  175. box-shadow: none
  176. }
  177. .searchBtn {
  178. position: absolute;
  179. top: 5px;
  180. left: 0;
  181. cursor: pointer;
  182. width: 30px;
  183. height: 30px;
  184. z-index: 2;
  185. }
  186. .searchClear {
  187. position: absolute;
  188. top: 5px;
  189. right: 0;
  190. cursor: pointer;
  191. width: 30px;
  192. height: 30px;
  193. z-index: 2;
  194. display: flex;
  195. justify-content: center;
  196. align-items: center;
  197. }
  198. }
  199. .rightBtn {
  200. width: 120px;
  201. height: 100%;
  202. cursor: pointer;
  203. background-image: url('../../assets/img/Intersect.png');
  204. background-size: 100% 100%;
  205. color: #fff;
  206. font-size: 16px;
  207. display: flex;
  208. justify-content: center;
  209. align-items: center;
  210. }
  211. }
  212. }
  213. .modelBox {
  214. // border-radius: 3px 3px 0 0;
  215. // margin-top: 10px;
  216. // box-shadow: 0px 0px 5px 3px #ccc;
  217. // background-color: rgba(255, 255, 255, 0.5000);
  218. width: 100%;
  219. // height: calc(100% - 300px);
  220. // overflow-y: auto;
  221. display: flex;
  222. flex-wrap: wrap;
  223. // padding: 0px 15px 0;
  224. .modelBox_row {
  225. border-radius: 6px;
  226. overflow: hidden;
  227. cursor: pointer;
  228. width: 264px;
  229. height: 264px;
  230. background-color: #CFCABD;
  231. margin: 0 20px 20px 0;
  232. position: relative;
  233. .modelBox_row_hover {
  234. opacity: 0;
  235. position: none;
  236. transition: opacity .3s;
  237. text-align: center;
  238. display: flex;
  239. justify-content: center;
  240. align-items: center;
  241. color: #fff;
  242. padding: 50px;
  243. font-size: 24px;
  244. line-height: 34px;
  245. backdrop-filter: blur(4px);
  246. background-color: rgba(0, 0, 0, .8);
  247. position: absolute;
  248. top: 0;
  249. left: 0;
  250. border-radius: 6px;
  251. width: 100%;
  252. height: 100%;
  253. }
  254. &:hover {
  255. // background-color: #C1A463;
  256. .modelBox_row_hover {
  257. opacity: 1;
  258. }
  259. }
  260. &:nth-of-type(5n) {
  261. margin-right: 0;
  262. }
  263. &>img {
  264. width: 264px;
  265. height: 264px;
  266. object-fit: cover;
  267. }
  268. p {
  269. height: 40px;
  270. display: flex;
  271. align-items: center;
  272. background-color: #741A1A;
  273. text-align: center;
  274. color: #fff;
  275. font-size: 16px;
  276. .row_txt1 {
  277. height: 100%;
  278. width: 100px;
  279. background-color: rgba(255, 255, 255, .6);
  280. line-height: 40px;
  281. border-right: 2px solid #fff;
  282. }
  283. .row_txt2 {
  284. height: 100%;
  285. flex: 1;
  286. line-height: 40px;
  287. }
  288. }
  289. }
  290. .noneList {
  291. width: 100%;
  292. height: 100%;
  293. height: 500px;
  294. display: flex;
  295. justify-content: center;
  296. align-items: center;
  297. flex-direction: column;
  298. position: relative;
  299. .incoBox {
  300. font-size: 24px;
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. width: 40px;
  305. height: 40px;
  306. margin-bottom: 15px;
  307. background-color: #BE262B;
  308. border-radius: 50%;
  309. color: #fff;
  310. font-weight: 700;
  311. }
  312. &>p {
  313. font-weight: 700;
  314. font-size: 20px;
  315. }
  316. }
  317. }
  318. .page {
  319. margin-top: 10px;
  320. display: flex;
  321. justify-content: flex-end;
  322. }
  323. }
  324. }
  325. }