index.module.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. .Discover {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. justify-content: flex-end;
  6. align-items: center;
  7. position: relative;
  8. :global {
  9. .left,
  10. .left2 {
  11. width: 45%;
  12. height: 100%;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. .record {
  17. width: fit-content;
  18. height: fit-content;
  19. max-width: 250px;
  20. position: absolute;
  21. top: 50%;
  22. left: 50%;
  23. transform: translate(-50%, -50%);
  24. display: flex;
  25. flex-direction: column;
  26. gap: 5px;
  27. padding: 10px;
  28. color: rgba(255, 255, 255, 1);
  29. transition: opacity 0.5s;
  30. .text {
  31. font-size: 9px;
  32. max-height: 77px;
  33. overflow: auto;
  34. &::-webkit-scrollbar {
  35. width: 0;
  36. height: 0;
  37. }
  38. }
  39. .btn {
  40. text-align: right;
  41. font-size: 9px;
  42. line-height: 14px;
  43. color: rgba(255, 223, 174, 1);
  44. cursor: pointer;
  45. }
  46. }
  47. .record1 {
  48. width: 200px;
  49. height: 75px;
  50. transform: translate(-149px, -104px);
  51. background: url('../../../../assets/img/A7_discover_record1.png') no-repeat center center;
  52. background-size: 100% 100%;
  53. }
  54. .record2 {
  55. width: 130px;
  56. height: 60px;
  57. transform: translate(0%, 94px);
  58. background: url('../../../../assets/img/A7_discover_record2.png') no-repeat center center;
  59. background-size: 100% 100%;
  60. .btnContainer {
  61. width: 100%;
  62. height: 12px;
  63. display: flex;
  64. justify-content: flex-end;
  65. align-items: center;
  66. .icon {
  67. width: 15px;
  68. height: 12px;
  69. line-height: 10px;
  70. & > img {
  71. height: 100%;
  72. object-fit: contain;
  73. }
  74. }
  75. }
  76. }
  77. .record3 {
  78. width: 155px;
  79. height: 45px;
  80. transform: translate(25px, -26px);
  81. background: url('../../../../assets/img/A7_discover_record3.png') no-repeat center center;
  82. background-size: 100% 100%;
  83. display: flex;
  84. align-items: center;
  85. padding: 7px 10px;
  86. .text {
  87. overflow: hidden;
  88. }
  89. }
  90. .record4 {
  91. width: 140px;
  92. height: 25px;
  93. transform: translate(-120px, 84px);
  94. background: url('../../../../assets/img/A7_discover_record4.png') no-repeat center center;
  95. background-size: 100% 100%;
  96. display: flex;
  97. align-items: center;
  98. flex-direction: row;
  99. .text {
  100. height: 22px;
  101. line-height: 25px;
  102. }
  103. }
  104. .record5 {
  105. width: 102px;
  106. height: 25px;
  107. transform: translate(-123px, -73px);
  108. background: url('../../../../assets/img/A7_discover_record5.png') no-repeat center center;
  109. background-size: 100% 100%;
  110. display: flex;
  111. align-items: center;
  112. flex-direction: row;
  113. .text {
  114. height: 15px;
  115. }
  116. }
  117. .point {
  118. height: 40px;
  119. width: 24px;
  120. position: absolute;
  121. top: 50%;
  122. left: 50%;
  123. transform: translate(-50%, -50%);
  124. & > img {
  125. height: 100%;
  126. object-fit: contain;
  127. }
  128. }
  129. .point1 {
  130. transform: translate(-16%, -83%);
  131. }
  132. .point2 {
  133. transform: translate(-5%, 146%);
  134. }
  135. }
  136. .left {
  137. overflow: hidden;
  138. transition: opacity 0.5s;
  139. .arrow1 {
  140. width: 20px;
  141. height: 66px;
  142. position: absolute;
  143. top: 50%;
  144. left: 50%;
  145. transform: translate(47%, 3%);
  146. background: url('../../../../assets/img/A7_discover_arrow1.png') no-repeat center center;
  147. background-size: contain;
  148. }
  149. .leftImg {
  150. position: absolute;
  151. top: 0;
  152. left: 0;
  153. width: 100%;
  154. height: 100%;
  155. background: url('../../../../assets/img/A7_map1.png') no-repeat center bottom;
  156. background-size: contain;
  157. transition: all 0.8s;
  158. }
  159. .leftImgMove {
  160. opacity: 0;
  161. transform: scale(4);
  162. }
  163. }
  164. .left2 {
  165. z-index: 2;
  166. opacity: 0;
  167. pointer-events: none;
  168. transition: opacity 0.5s;
  169. background: url('../../../../assets/img/A7_map2.png') no-repeat center bottom;
  170. background-size: contain;
  171. position: relative;
  172. .point3 {
  173. transform: translate(36px, 16px);
  174. }
  175. .point4 {
  176. transform: translate(-33px, 45px);
  177. }
  178. .point5 {
  179. transform: translate(-62px, -57px);
  180. }
  181. .arrow2 {
  182. width: 22px;
  183. height: 72px;
  184. position: absolute;
  185. top: 50%;
  186. left: 50%;
  187. transform: translate(-261%, -18%);
  188. background: url('../../../../assets/img/A7_discover_arrow2.png') no-repeat center center;
  189. background-size: 100% 100%;
  190. }
  191. .arrow3 {
  192. width: 57px;
  193. height: 28px;
  194. position: absolute;
  195. top: 50%;
  196. left: 50%;
  197. transform: translate(-26%, 139%);
  198. background: url('../../../../assets/img/A7_discover_arrow3.png') no-repeat center center;
  199. background-size: 100% 100%;
  200. }
  201. .back {
  202. width: 60px;
  203. height: 30px;
  204. position: absolute;
  205. z-index: 1;
  206. top: auto;
  207. bottom: 5%;
  208. left: 50%;
  209. transform: translate(-50%, 10%);
  210. cursor: pointer;
  211. display: flex;
  212. align-items: center;
  213. justify-content: center;
  214. font-size: 12px;
  215. & > img {
  216. position: absolute;
  217. z-index: -1;
  218. height: 100%;
  219. object-fit: contain;
  220. }
  221. .txt {
  222. color: rgba(255, 223, 174, 1);
  223. }
  224. }
  225. }
  226. .left2Ac {
  227. opacity: 1;
  228. pointer-events: auto;
  229. }
  230. .right {
  231. margin-top: 160px;
  232. padding-bottom: 10px;
  233. width: 55%;
  234. height: 100%;
  235. .scroll {
  236. width: 100%;
  237. height: 78%;
  238. display: flex;
  239. flex-direction: column;
  240. align-items: center;
  241. gap: 10px;
  242. overflow: auto;
  243. padding-bottom: 15px;
  244. padding-top: 6px;
  245. mask-image: linear-gradient(
  246. to bottom,
  247. rgba(0, 0, 0, 1) 0%,
  248. rgba(0, 0, 0, 1) 80%,
  249. /* 保留顶部70%不透明 */ rgba(0, 0, 0, 0) 100% /* 底部30%完全透明 */
  250. );
  251. -webkit-mask-image: linear-gradient(
  252. to bottom,
  253. rgba(0, 0, 0, 1) 0%,
  254. rgba(0, 0, 0, 1) 80%,
  255. rgba(0, 0, 0, 0) 100%
  256. );
  257. &::-webkit-scrollbar {
  258. width: 0;
  259. }
  260. }
  261. .item {
  262. width: 95%;
  263. height: fit-content;
  264. display: flex;
  265. flex-direction: column;
  266. gap: 5px;
  267. .title {
  268. width: 100%;
  269. height: 15px;
  270. display: flex;
  271. align-items: center;
  272. gap: 5px;
  273. .icon {
  274. width: 15px;
  275. height: 15px;
  276. object-fit: contain;
  277. line-height: 14px;
  278. & > img {
  279. height: 100%;
  280. object-fit: contain;
  281. }
  282. }
  283. .txt {
  284. height: 15px;
  285. line-height: 15px;
  286. font-weight: bold;
  287. color: rgba(124, 75, 54, 1);
  288. font-size: 12px;
  289. }
  290. }
  291. .text {
  292. width: 95%;
  293. height: fit-content;
  294. align-self: flex-end;
  295. color: rgba(93, 96, 96, 1);
  296. font-size: 11px;
  297. line-height: 18px;
  298. position: relative;
  299. a {
  300. color: rgba(175, 135, 100, 1);
  301. }
  302. .textBj {
  303. position: absolute;
  304. top: -0%;
  305. left: -0%;
  306. width: 100%;
  307. height: 100%;
  308. max-width: 99999px;
  309. max-height: 99999px;
  310. object-fit: fill !important;
  311. }
  312. .txt2_item {
  313. width: 100%;
  314. height: fit-content;
  315. display: flex;
  316. flex-direction: column;
  317. gap: 5px;
  318. color: rgba(93, 96, 96, 1);
  319. margin-bottom: 20px;
  320. .text_name {
  321. font-weight: bold;
  322. }
  323. .pdfItem {
  324. cursor: pointer;
  325. color: rgba(175, 135, 100, 1);
  326. }
  327. }
  328. }
  329. .from {
  330. width: 95%;
  331. height: fit-content;
  332. align-self: flex-end;
  333. text-align: right;
  334. color: rgba(93, 96, 96, 1);
  335. font-size: 11px;
  336. }
  337. }
  338. }
  339. .direct {
  340. width: 70px;
  341. height: 70px;
  342. position: absolute;
  343. left: 2%;
  344. bottom: 2%;
  345. z-index: 10;
  346. cursor: pointer;
  347. & > img {
  348. height: 100%;
  349. object-fit: contain;
  350. }
  351. }
  352. }
  353. }
  354. // ------------移动端
  355. .DiscoverMo {
  356. :global {
  357. .right {
  358. .item {
  359. .title {
  360. .icon {
  361. position: relative;
  362. top: -1px;
  363. width: 18px;
  364. height: 18px;
  365. }
  366. .txt {
  367. font-size: 16px;
  368. }
  369. }
  370. .text {
  371. margin-top: 8px;
  372. font-size: 16px;
  373. line-height: 22px;
  374. }
  375. .from {
  376. font-size: 14px;
  377. }
  378. }
  379. }
  380. .left {
  381. .record1 {
  382. width: 230px;
  383. height: 127px;
  384. transform: translate(-166px, -139px);
  385. .text {
  386. font-size: 14px;
  387. }
  388. .btn {
  389. font-size: 14px;
  390. }
  391. }
  392. .record2 {
  393. padding-top: 15px;
  394. width: 190px;
  395. height: 80px;
  396. .text {
  397. font-size: 14px;
  398. }
  399. .btn {
  400. font-size: 14px;
  401. }
  402. .btnContainer {
  403. .icon {
  404. width: 20px;
  405. height: 20px;
  406. position: relative;
  407. left: -2px;
  408. top: -1px;
  409. }
  410. }
  411. }
  412. }
  413. .left2 {
  414. .record5 {
  415. padding-top: 2px;
  416. width: 156px;
  417. height: 36px;
  418. transform: translate(-163px, -83px);
  419. .text {
  420. font-size: 14px;
  421. }
  422. .btn {
  423. font-size: 14px;
  424. }
  425. }
  426. .record3 {
  427. width: 181px;
  428. height: 60px;
  429. transform: translate(19px, -32px);
  430. padding-top: 2px;
  431. .text {
  432. font-size: 14px;
  433. padding: 6px 0px;
  434. }
  435. .btn {
  436. font-size: 14px;
  437. }
  438. }
  439. .record4 {
  440. width: 192px;
  441. height: 36px;
  442. transform: translate(-145px, 84px);
  443. padding-top: 16px;
  444. .text {
  445. font-size: 14px;
  446. }
  447. .btn {
  448. font-size: 14px;
  449. }
  450. }
  451. .point4 {
  452. transform: translate(-34px, 47px);
  453. }
  454. .back {
  455. width: 90px;
  456. height: 40px;
  457. .txt {
  458. font-size: 16px;
  459. }
  460. }
  461. }
  462. .right {
  463. .scroll {
  464. .item {
  465. .text {
  466. width: 90%;
  467. .text_txt {
  468. width: 90%;
  469. }
  470. }
  471. }
  472. }
  473. }
  474. .direct {
  475. left: 1%;
  476. bottom: 1%;
  477. width: 80px;
  478. height: 80px;
  479. }
  480. }
  481. }