index.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. #content{
  2. /* background: #000; */
  3. background-size: 100%;
  4. width: 100%;
  5. height: 100vh;
  6. position: relative;
  7. }
  8. .point {
  9. cursor: pointer;
  10. }
  11. .video {
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. object-fit: cover;
  17. height: 100%;
  18. z-index: -99;
  19. }
  20. .videoContainer {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. width: 100%;
  25. height: 100%;
  26. overflow: hidden;
  27. z-index: -100;
  28. }
  29. .videoContainer:before {
  30. content: '';
  31. position: absolute;
  32. width: 100%;
  33. height: 100%;
  34. display: block;
  35. z-index: -1;
  36. top: 0;
  37. left: 0;
  38. background: rgba(25, 29, 34, 0.65);
  39. }
  40. .fillWidth {
  41. width: 100%;
  42. }
  43. .menban {
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .absolute1 {
  51. translate: none;
  52. rotate: none;
  53. scale: none;
  54. animation:myfirst1 0.3s;
  55. }
  56. .absolute2 {
  57. translate: none;
  58. rotate: none;
  59. scale: none;
  60. animation:myfirst2 0.3s;
  61. animation-delay: 0.1s;
  62. /* opacity: 0.2; */
  63. }
  64. .absolute3 {
  65. translate: none;
  66. rotate: none;
  67. scale: none;
  68. animation:myfirst3 0.3s;
  69. animation-delay: 0.2s;
  70. }
  71. @keyframes myfirst1 {
  72. 0% {
  73. transform: translate(-50%,0%) translate3d(-10%,0px);
  74. transform-origin: 0px 50%;
  75. }
  76. 50% {
  77. transform: translate(-50%,0%) translate3d(-10%,0px, 0px) scale(0.2138,1);
  78. transform-origin: 100% 50%;
  79. }
  80. 100% {
  81. transform: translate(-50%,0%) translate3d(-10%,0px);
  82. transform-origin: 0px 50%;
  83. }
  84. }
  85. @keyframes myfirst2 {
  86. 0% {
  87. transform: translate(-50%,0%) translate3d(-10%,0px);
  88. transform-origin: 0px 50%;
  89. }
  90. 50% {
  91. transform: translate(-50%,0%) translate3d(-10%,0px, 0px) scale(0.2138,1);
  92. transform-origin: 100% 50%;
  93. }
  94. 100% {
  95. transform: translate(-50%,0%) translate3d(-10%,0px);
  96. transform-origin: 0px 50%;
  97. }
  98. }
  99. @keyframes myfirst3 {
  100. 0% {
  101. transform: translate(-50%,0%) translate3d(-10%,0px);
  102. transform-origin: 0px 50%;
  103. }
  104. 50% {
  105. transform: translate(-50%,0%) translate3d(-10%,0px, 0px) scale(0.2138,1);
  106. transform-origin: 100% 50%;
  107. }
  108. 100% {
  109. transform: translate(-50%,0%) translate3d(-10%,0px);
  110. transform-origin: 0px 50%;
  111. }
  112. }
  113. .absolute_1 {
  114. width: 83px !important;
  115. transform: translate(-50%,100%) translate(-10%,0px) rotate(23.4deg);
  116. top: -0.1vw !important;
  117. }
  118. .absolute_2 {
  119. translate: none;
  120. rotate: none;
  121. scale: none;
  122. transform-origin: 50% 50%;
  123. transform: translate(-50%,0%) translate(-10%,0px);
  124. opacity: 0 !important;
  125. }
  126. .absolute_3 {
  127. width: 83px !important;
  128. transform: translate(-50%,-50%) translate(-10%,0px) rotate(-23.4deg);
  129. top: -0.1vw !important;
  130. }
  131. .absolute_11 {
  132. translate: none;
  133. rotate: none;
  134. scale: none;
  135. transform-origin: 50% 50%;
  136. /* top: -0.1vw !important; */
  137. animation:myfirst11 0.3s;
  138. }
  139. .absolute_33 {
  140. translate: none;
  141. rotate: none;
  142. scale: none;
  143. transform-origin: 50% 50%;
  144. animation:myfirst33 0.3s;
  145. }
  146. @keyframes myfirst11 {
  147. /* 0% {
  148. transform: translate(-50%,0%) translate(-0.3333px,0px) rotate(23.4deg) ;
  149. } */
  150. 0% {
  151. transform: translate(-50%,100%) translate3d(-10%,0px,0px) rotate(-23.4deg) ;
  152. }
  153. 100% {
  154. transform: translate(-50%,100%) translate(-10%,0px) rotate(23.4deg) ;
  155. }
  156. }
  157. @keyframes myfirst33 {
  158. /* 0% {
  159. transform: translate(-50%,0%) translate(-0.3333px,0px) rotate(-23.4deg) ;
  160. } */
  161. 0% {
  162. transform: translate(-50%,-50%) translate3d(-10%,0px,0px) rotate(23.4deg) ;
  163. }
  164. 100% {
  165. transform: translate(-50%,-50%) translate(-10%,0px) rotate(-23.4deg) ;
  166. }
  167. }
  168. .shua {
  169. position: fixed;
  170. top: 0;
  171. left: 0;
  172. width: 100%;
  173. height: 100vh;
  174. background: #fff;
  175. /* z-index: 99; */
  176. }
  177. .shua_js {
  178. top: -100%;
  179. animation: white_ani 0.5s;
  180. }
  181. @keyframes white_ani {
  182. 0% {
  183. top: 0;
  184. }
  185. 100% {
  186. top: -100%;
  187. }
  188. }
  189. .is_show {
  190. display: block !important;
  191. }
  192. .one {
  193. height: 100vh;
  194. position: relative;
  195. /* display: none; */
  196. }
  197. .one .title {
  198. width: 100%;
  199. /* position: absolute; */
  200. /* top: 70vh; */
  201. box-sizing: border-box;
  202. padding: 0 100px;
  203. }
  204. .one .title h1 {
  205. font-size: 150px;
  206. font-weight: 500;
  207. color: #666666;
  208. line-height: 90px;
  209. margin-bottom: 89px;
  210. /* text-align: center; */
  211. }
  212. .one .subTitle {
  213. /* position: relative;
  214. top: 0;
  215. left: 0; */
  216. box-sizing: border-box;
  217. padding: 194px 101px 0;
  218. height: 70vh;
  219. animation:js_subtitle 1s ease-out 2s backwards;
  220. }
  221. @keyframes js_subtitle {
  222. 0% {
  223. transform:translate(-60px);
  224. opacity:0;
  225. }
  226. 50% {
  227. transform:translate(-30px);
  228. opacity:.5;
  229. }
  230. 100% {
  231. transform:translate(0);
  232. opacity:1;
  233. }
  234. }
  235. .one .subTitle h2 {
  236. position: sticky;
  237. top: 194px;
  238. font-size: 60px;
  239. font-weight: 600;
  240. color: #fff;
  241. line-height: 60px;
  242. }
  243. .one .title .line {
  244. width: 1720px;
  245. height: 4px;
  246. background: #666;
  247. margin-bottom: 40px;
  248. position: relative;
  249. }
  250. .one .title .line:after {
  251. display: block;
  252. position: absolute;
  253. /* top: 180px; */
  254. /* left: 100px; */
  255. width: 1720px;
  256. height: 4px;
  257. transform: scale(0, 1);
  258. background-color: #fff;
  259. content: "";
  260. animation: js_scrollAttention_line 2s infinite cubic-bezier(.77, 0, .175, 1)
  261. }
  262. @keyframes js_scrollAttention_line {
  263. 0% {
  264. transform: scale(0, 1);
  265. transform-origin: left top
  266. }
  267. 40% {
  268. transform: scale(1, 1);
  269. transform-origin: left top
  270. }
  271. 41% {
  272. transform: scale(1, 1);
  273. transform-origin: right top
  274. }
  275. 100% {
  276. transform: scale(0, 1);
  277. transform-origin: right top
  278. }
  279. }
  280. .text {
  281. max-width: 600px;
  282. font-size: 50px;
  283. font-weight: 600;
  284. color: #fff;
  285. line-height: 45px;
  286. }
  287. .text:hover {
  288. color: #666666;
  289. }
  290. .down {
  291. width: 50px;
  292. height: 50px;
  293. margin: 0 20px;
  294. animation: js_scrollAttention_arw 1.2s infinite cubic-bezier(.77, 0, .175, 1) 1.5s
  295. }
  296. @keyframes js_scrollAttention_arw {
  297. 0% {
  298. transform: translate(0, 0);
  299. opacity: 1
  300. }
  301. 20% {
  302. transform: translate(0, 100%);
  303. opacity: 0
  304. }
  305. 21% {
  306. transform: translate(0, -100%);
  307. opacity: 0
  308. }
  309. 100%,
  310. 40% {
  311. transform: translate(0, 0);
  312. opacity: 1
  313. }
  314. }
  315. .inner .frame .title1 {
  316. font-size: 32px;
  317. font-weight: 500;
  318. color: #FEFEFE;
  319. line-height: 40px;
  320. }
  321. .inner .frame .line {
  322. width: 260px;
  323. height: 4px;
  324. background: #FFFFFF;
  325. border-radius: 2px;
  326. margin: 30px 0 49px;
  327. }
  328. .inner .frame .text_box {
  329. margin-bottom: 37px;
  330. }
  331. .inner .frame .text_box:hover {
  332. opacity: 0.6;
  333. }
  334. .inner .frame .text_box .text1 {
  335. font-size: 32px;
  336. font-weight: 500;
  337. color: #FEFEFE;
  338. /* line-height: 32px; */
  339. margin-bottom: 9px;
  340. }
  341. .inner .frame .text_box .text2 {
  342. font-size: 24px;
  343. font-weight: 500;
  344. color: #FEFEFE;
  345. /* line-height: 40px; */
  346. }
  347. .one .content {
  348. padding: 25vh 0 100vh;
  349. font-size: 60px;
  350. font-weight: 500;
  351. color: #fff;
  352. line-height: 90px;
  353. }
  354. .two {
  355. margin-top: 100vh;
  356. width: 100%;
  357. height: 100vh;
  358. position: relative;
  359. }
  360. .icon_down {
  361. position: fixed;
  362. right: 243px;
  363. bottom: 243px;
  364. height: 120px;
  365. width: 40px;
  366. z-index: 9;
  367. }
  368. .icon_down .icon-down-1 {
  369. width: 34px;
  370. height: 60px;
  371. }
  372. .icon_down .icon-down-2 {
  373. width: 34px;
  374. height: 40px;
  375. }
  376. .two .video_bg {
  377. position: absolute;
  378. top: 0;
  379. left: 0;
  380. width: 100%;
  381. height: 100vh;
  382. }
  383. .two .video_bg::before {
  384. content: '';
  385. position: absolute;
  386. width: 100%;
  387. height: 100%;
  388. display: block;
  389. /* z-index: 1; */
  390. top: 0;
  391. left: 0;
  392. background: rgba(25, 29, 34, 0.65);
  393. }
  394. .two .video_bg video {
  395. width: 100%;
  396. height: 100vh;
  397. object-fit: cover;
  398. z-index: -999;
  399. }
  400. .two .video_bg .img {
  401. width: 100%;
  402. height: 100vh;
  403. object-fit: cover;
  404. z-index: -99;
  405. }
  406. .two .video_bg .content {
  407. position: absolute;
  408. top: 0;
  409. left: 0;
  410. width: 100%;
  411. height: 100%;
  412. box-sizing: border-box;
  413. padding: 0 101px;
  414. }
  415. .two .video_bg .content .name,.wenan{
  416. font-size: 60px;
  417. font-weight: 600;
  418. color: #fff;
  419. line-height: 80px;
  420. z-index: 999;
  421. }
  422. .two .video_bg .content .name{
  423. padding: 399px 0 75px;
  424. }
  425. .two .video_bg .content .content_right {
  426. padding: 400px 0 200px;
  427. }
  428. .two .video_bg .content .content_right .right_index {
  429. padding-top: 54px;
  430. font-weight: 500;
  431. color: #FFFFFF;
  432. line-height: 140px;
  433. font-size: 36px;
  434. }
  435. .two .video_bg .content .content_right .right_index .indexs {
  436. font-size: 140px;
  437. }
  438. .two .video_bg .content .content_right .circle {
  439. width: 12px;
  440. height: 12px;
  441. border: 2px solid #FFFFFF;
  442. border-radius: 50%;
  443. margin-bottom: 21px;
  444. }
  445. .two .video_bg .content .content_right .circle_active {
  446. background: #FFFFFF;
  447. }
  448. .two .video_bg .content .content_right .icon_down2 {
  449. /* position: absolute;
  450. right: 243px;
  451. bottom: 243px; */
  452. height: 120px;
  453. width: 40px;
  454. z-index: 9;
  455. }
  456. .icon_down .icon-down-1 {
  457. width: 34px;
  458. height: 60px;
  459. }
  460. .icon_down .icon-down-2 {
  461. width: 34px;
  462. height: 40px;
  463. }
  464. .three {
  465. margin-top: 100vh;
  466. width: 100%;
  467. height: 100vh;
  468. position: relative;
  469. min-height: 100vh;
  470. }
  471. .three .video_bg {
  472. position: absolute;
  473. top: 0;
  474. left: 0;
  475. width: 100%;
  476. height: 100vh;
  477. }
  478. .three .video_bg::before {
  479. content: '';
  480. position: absolute;
  481. width: 100%;
  482. height: 100%;
  483. display: block;
  484. /* z-index: 1; */
  485. top: 0;
  486. left: 0;
  487. background: rgba(25, 29, 34, 0.65);
  488. }
  489. .three .video_bg video {
  490. width: 100%;
  491. height: 100vh;
  492. object-fit: cover;
  493. z-index: -999;
  494. }
  495. .three .video_bg .videos_img {
  496. width: 100%;
  497. height: 100%;
  498. object-fit: cover;
  499. z-index: -99;
  500. }
  501. .three .three_text {
  502. position: absolute;
  503. top: 0;
  504. left: 0;
  505. width: 100%;
  506. height: 100%;
  507. padding: 400px 0 0;
  508. font-size: 60px;
  509. font-weight: 500;
  510. color: #fff;
  511. line-height: 90px;
  512. text-align: center;
  513. }
  514. @media screen and (max-width: 750px) {
  515. .two .video_bg .content .content_right .right_index {
  516. position: absolute;
  517. top: 100px;
  518. left: 100px;
  519. }
  520. .two .video_bg .content .content_left {
  521. padding: 70vh 0 0;
  522. }
  523. }
  524. /deep/ .footer {
  525. margin-top: 100vh;
  526. }