reset.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. border: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. -webkit-user-select: none;
  8. -moz-user-select: none;
  9. -ms-user-select: none;
  10. user-select: none;
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. -webkit-tap-highlight-color: transparent;
  14. }
  15. li {
  16. list-style: none;
  17. }
  18. :root {
  19. --fontsize: 16px;
  20. }
  21. @media (max-width: 1600px) {
  22. :root {
  23. --fontsize: 14px;
  24. }
  25. }
  26. @media (max-width: 1450px) {
  27. :root {
  28. --fontsize: 12px;
  29. }
  30. }
  31. @media (max-width: 1200px) {
  32. :root {
  33. --fontsize: 10px;
  34. }
  35. }
  36. @media (max-width: 1025px) {
  37. :root {
  38. --fontsize: 13px;
  39. }
  40. }
  41. @media (max-width: 500px) {
  42. :root {
  43. --fontsize: 12px;
  44. }
  45. }
  46. html {
  47. font-size: var(--fontsize);
  48. }
  49. @font-face {
  50. font-family: "sk";
  51. src: url(../font/sk.ttf);
  52. }
  53. body {
  54. font-family: "sk";
  55. width: 100%;
  56. height: 100%;
  57. position: fixed;
  58. overflow: hidden;
  59. -ms-scroll-chaining: none;
  60. overscroll-behavior: none;
  61. -webkit-overflow-scrolling: touch;
  62. background: linear-gradient(45deg, #021d3c, #082c56, #021d3c, #0c2f57);
  63. }
  64. @-webkit-keyframes bgAnimation {
  65. 0% {
  66. background-position: 0% 50%;
  67. }
  68. 50% {
  69. background-position: 100% 50%;
  70. }
  71. 100% {
  72. background-position: 0% 50%;
  73. }
  74. }
  75. @keyframes bgAnimation {
  76. 0% {
  77. background-position: 0% 50%;
  78. }
  79. 50% {
  80. background-position: 100% 50%;
  81. }
  82. 100% {
  83. background-position: 0% 50%;
  84. }
  85. }
  86. img {
  87. pointer-events: none;
  88. }
  89. .svg img {
  90. width: 100%;
  91. }
  92. #menu {
  93. position: relative;
  94. z-index: 2;
  95. }
  96. .menuicon {
  97. position: absolute;
  98. right: 2.3rem;
  99. top: 1.3rem;
  100. width: 2rem;
  101. height: 2rem;
  102. -webkit-transition: all 0.3s;
  103. transition: all 0.3s;
  104. cursor: pointer;
  105. background: url(https://vr.njmuseum.com/img/close2.png) no-repeat center/1.2rem;
  106. }
  107. .menuicon:hover {
  108. -webkit-transform: rotate(180deg) scale(1.1);
  109. transform: rotate(180deg) scale(1.1);
  110. }
  111. .menubox {
  112. position: absolute;
  113. right: -6.8rem;
  114. top: 0;
  115. height: 100vh;
  116. -webkit-transition: all 0.6s;
  117. transition: all 0.6s;
  118. display: -webkit-box;
  119. display: -ms-flexbox;
  120. display: flex;
  121. -webkit-box-pack: center;
  122. -ms-flex-pack: center;
  123. justify-content: center;
  124. -webkit-box-align: center;
  125. -ms-flex-align: center;
  126. align-items: center;
  127. border-bottom-left-radius: 1rem;
  128. border-top-left-radius: 1rem;
  129. width: 6.8rem;
  130. border: 1px solid #896a43;
  131. border-right: 0;
  132. -webkit-box-sizing: border-box;
  133. box-sizing: border-box;
  134. background: rgba(0, 0, 0, 0.6);
  135. }
  136. .menubox.active {
  137. right: 0;
  138. }
  139. .menubox .menulist {
  140. display: -webkit-box;
  141. display: -ms-flexbox;
  142. display: flex;
  143. -webkit-box-orient: vertical;
  144. -webkit-box-direction: normal;
  145. -ms-flex-flow: column;
  146. flex-flow: column;
  147. margin-top: 3rem;
  148. }
  149. .menubox .menulist li {
  150. position: relative;
  151. font-size: 1.3rem;
  152. -webkit-writing-mode: tb-rl;
  153. -ms-writing-mode: tb-rl;
  154. writing-mode: tb-rl;
  155. display: -webkit-box;
  156. display: -ms-flexbox;
  157. display: flex;
  158. -webkit-box-align: center;
  159. -ms-flex-align: center;
  160. align-items: center;
  161. margin: 1.2rem 0;
  162. color: #896a43;
  163. -webkit-transition: all 0.3s;
  164. transition: all 0.3s;
  165. width: 3rem;
  166. -webkit-box-pack: center;
  167. -ms-flex-pack: center;
  168. justify-content: center;
  169. cursor: pointer;
  170. border-left: 1px solid #896a43;
  171. border-right: 1px solid #896a43;
  172. background-color: #11153a;
  173. padding: 1.8rem 0;
  174. }
  175. .menubox .menulist li:before, .menubox .menulist li:after {
  176. content: "";
  177. position: absolute;
  178. border: 1px solid #896a43;
  179. background-color: #11153a;
  180. border-radius: 3px;
  181. width: 116%;
  182. left: -8%;
  183. height: 8px;
  184. -webkit-box-sizing: border-box;
  185. box-sizing: border-box;
  186. }
  187. .menubox .menulist li:before {
  188. top: -8px;
  189. }
  190. .menubox .menulist li:after {
  191. bottom: -8px;
  192. }
  193. .menubox .menulist li:hover, .menubox .menulist li.active {
  194. color: #eacea4;
  195. background-color: #614118;
  196. }
  197. .menubox .menulist li:hover:before, .menubox .menulist li:hover:after, .menubox .menulist li.active:before, .menubox .menulist li.active:after {
  198. background-color: #614118;
  199. }
  200. .section1 {
  201. background: url(../img/bg.png) no-repeat center/cover;
  202. }
  203. .allbg {
  204. position: absolute;
  205. width: 100%;
  206. height: 100%;
  207. top: 0;
  208. left: 0;
  209. -webkit-transition: all 0.5s;
  210. transition: all 0.5s;
  211. background: url(../img/bg.png) no-repeat center/cover;
  212. }
  213. .allbg video {
  214. width: 100%;
  215. height: 100%;
  216. -o-object-fit: fill;
  217. object-fit: fill;
  218. background: url(../img/bg.png) no-repeat center/cover !important;
  219. }
  220. @media (min-width: 768px) {
  221. ::-webkit-scrollbar {
  222. width: 6px;
  223. height: 6px;
  224. background-color: #f5f5f5;
  225. }
  226. ::-webkit-scrollbar-track {
  227. background-color: #f5f5f5;
  228. }
  229. ::-webkit-scrollbar-thumb,
  230. ::-webkit-scrollbar-track {
  231. border-radius: 10px;
  232. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  233. box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  234. }
  235. ::-webkit-scrollbar-thumb {
  236. background-color: #969696;
  237. }
  238. }
  239. @-webkit-keyframes activedown-upin {
  240. 0% {
  241. opacity: 0;
  242. margin-top: 10vh;
  243. }
  244. to {
  245. opacity: 1;
  246. margin-top: 0;
  247. }
  248. }
  249. @keyframes activedown-upin {
  250. 0% {
  251. opacity: 0;
  252. margin-top: 10vh;
  253. }
  254. to {
  255. opacity: 1;
  256. margin-top: 0;
  257. }
  258. }
  259. @-webkit-keyframes down-upout {
  260. 0% {
  261. opacity: 1;
  262. margin-top: 0;
  263. }
  264. to {
  265. opacity: 0;
  266. margin-top: -10vh;
  267. }
  268. }
  269. @keyframes down-upout {
  270. 0% {
  271. opacity: 1;
  272. margin-top: 0;
  273. }
  274. to {
  275. opacity: 0;
  276. margin-top: -10vh;
  277. }
  278. }
  279. @-webkit-keyframes activeup-downin {
  280. 0% {
  281. opacity: 0;
  282. margin-top: -10vh;
  283. }
  284. to {
  285. opacity: 1;
  286. margin-top: 0;
  287. }
  288. }
  289. @keyframes activeup-downin {
  290. 0% {
  291. opacity: 0;
  292. margin-top: -10vh;
  293. }
  294. to {
  295. opacity: 1;
  296. margin-top: 0;
  297. }
  298. }
  299. @-webkit-keyframes up-downout {
  300. 0% {
  301. opacity: 1;
  302. margin-top: 0;
  303. }
  304. to {
  305. opacity: 0;
  306. margin-top: 10vh;
  307. }
  308. }
  309. @keyframes up-downout {
  310. 0% {
  311. opacity: 1;
  312. margin-top: 0;
  313. }
  314. to {
  315. opacity: 0;
  316. margin-top: 10vh;
  317. }
  318. }
  319. .section video {
  320. width: 100vw;
  321. height: 100vh;
  322. background: #000;
  323. }
  324. .section2 {
  325. position: relative;
  326. z-index: 2;
  327. }
  328. .videopage #fp-nav ul li:nth-child(-n+0) {
  329. display: none !important;
  330. }
  331. .videopage #fp-nav ul li:nth-child(12):after {
  332. display: none !important;
  333. }
  334. .videopage #fp-nav ul li:nth-child(n+13) {
  335. display: none !important;
  336. }
  337. .skpage #fp-nav ul li:nth-child(-n+12) {
  338. display: none !important;
  339. }
  340. .skpage #fp-nav ul li:nth-child(15):after {
  341. display: none !important;
  342. }
  343. .skpage #fp-nav ul li:nth-child(n+16) {
  344. display: none !important;
  345. }
  346. .dmzpage #fp-nav ul li:nth-child(-n+15) {
  347. display: none !important;
  348. }
  349. .dmzpage #fp-nav ul li:nth-child(15):after {
  350. display: none !important;
  351. }
  352. .dmzpage #fp-nav ul li:nth-child(n+16) {
  353. display: none !important;
  354. }
  355. .wwpage #fp-nav ul li:nth-child(-n+15) {
  356. display: none !important;
  357. }
  358. .wwpage #fp-nav ul li:nth-child(29):after {
  359. display: none !important;
  360. }
  361. .wwpage #fp-nav ul li:nth-child(n+30) {
  362. display: none !important;
  363. }
  364. .otherpage #fp-nav ul li:nth-child(-n+29) {
  365. display: none !important;
  366. }
  367. .section.active .iconbtn {
  368. margin-top: 0.85rem;
  369. opacity: 1;
  370. }
  371. .section.active .iconbtn:nth-child(1) {
  372. -webkit-transition-delay: 0.7s;
  373. transition-delay: 0.7s;
  374. }
  375. .section.active .iconbtn:nth-child(2) {
  376. -webkit-transition-delay: 0.9s;
  377. transition-delay: 0.9s;
  378. }
  379. .section.active .iconbtn:nth-child(3) {
  380. -webkit-transition-delay: 1.1s;
  381. transition-delay: 1.1s;
  382. }
  383. .iconlist {
  384. position: absolute;
  385. z-index: 1;
  386. right: 1.5rem;
  387. top: 1.5rem;
  388. }
  389. .iconbtn {
  390. background: no-repeat center/contain;
  391. width: 3.75rem;
  392. height: 3.75rem;
  393. margin-top: 3.13rem;
  394. -webkit-transition: all 0.6s;
  395. transition: all 0.6s;
  396. opacity: 0;
  397. cursor: pointer;
  398. }
  399. .iconbtn.icon-back {
  400. background-image: url(https://vr.njmuseum.com/img/webp/icon-back.webp);
  401. }
  402. .iconbtn.icon-video {
  403. background-image: url(https://vr.njmuseum.com/img/webp/icon-video.webp);
  404. }
  405. .iconbtn.icon-3d {
  406. background-image: url(https://vr.njmuseum.com/img/webp/icon-3d.webp);
  407. }
  408. .iconbtn.icon-rnsys {
  409. background-image: url(https://vr.njmuseum.com/img/webp/icon-rnsys.webp);
  410. }
  411. .iconbtn.icon-jcyy {
  412. background-image: url(https://vr.njmuseum.com/img/webp/icon-jcyy.webp);
  413. }
  414. .iconbtn.icon-yrzh {
  415. background-image: url(https://vr.njmuseum.com/img/webp/icon-yrzh.webp);
  416. }
  417. .iconbtn.icon-ww-js {
  418. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-js.webp);
  419. }
  420. .iconbtn.icon-ww-tnd {
  421. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-tnd.webp);
  422. }
  423. .iconbtn.icon-ww-ft {
  424. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-ft.webp);
  425. }
  426. .iconbtn.icon-ww-xl {
  427. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-xl.webp);
  428. }
  429. .iconbtn.icon-ww-dy {
  430. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-dy.webp);
  431. }
  432. .iconbtn.icon-ww-mp {
  433. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-mp.webp);
  434. }
  435. .iconbtn.icon-ww-tld {
  436. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-tld.webp);
  437. }
  438. .iconbtn.icon-ww-tyh {
  439. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-tyh.webp);
  440. }
  441. .iconbtn.icon-ww-jcyy {
  442. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-jcyy.webp);
  443. }
  444. .iconbtn.icon-ww-jz {
  445. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-jz.webp);
  446. }
  447. .iconbtn.icon-ww-rnsys {
  448. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-rnsys.webp);
  449. }
  450. .iconbtn.icon-ww-sst {
  451. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-sst.webp);
  452. }
  453. .iconbtn.icon-ww-szcmap {
  454. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-szcmap.webp);
  455. }
  456. .iconbtn.icon-ww-szc {
  457. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-szc.webp);
  458. }
  459. .iconbtn.icon-ww-xjm {
  460. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-xjm.webp);
  461. }
  462. .iconbtn.icon-ww-xdm {
  463. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-xdm.webp);
  464. }
  465. .iconbtn.icon-ww-xfl {
  466. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-xfl.webp);
  467. }
  468. .iconbtn.icon-ww-lltgm {
  469. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-lltgm.webp);
  470. }
  471. .iconbtn.icon-ww-jgyb {
  472. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-jgyb.webp);
  473. }
  474. .iconbtn.icon-ww-ylwbh {
  475. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-ylwbh.webp);
  476. }
  477. .iconbtn.icon-ww-mhxxj {
  478. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-mhxxj.webp);
  479. }
  480. .iconbtn.icon-ww-hylwgt {
  481. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-hylwgt.webp);
  482. }
  483. .iconbtn.icon-ww-lylwgt {
  484. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-lylwgt.webp);
  485. }
  486. .iconbtn.icon-ww-swllgj {
  487. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-swllgj.webp);
  488. }
  489. .iconbtn.icon-ww-hyxgg {
  490. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-hyxgg.webp);
  491. }
  492. .iconbtn.icon-ww-sjhhwmp {
  493. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-sjhhwmp.webp);
  494. }
  495. .iconbtn.icon-ww-hhwzyp {
  496. background-image: url(https://vr.njmuseum.com/img/webp/icon-ww-hhwzyp.webp);
  497. }
  498. .section-yrzh {
  499. position: relative;
  500. display: -webkit-box;
  501. display: -ms-flexbox;
  502. display: flex;
  503. -webkit-box-orient: vertical;
  504. -webkit-box-direction: normal;
  505. -ms-flex-flow: column;
  506. flex-flow: column;
  507. -webkit-box-align: center;
  508. -ms-flex-align: center;
  509. align-items: center;
  510. -webkit-box-pack: center;
  511. -ms-flex-pack: center;
  512. justify-content: center;
  513. background: url(https://vr.njmuseum.com/img/yrzh/bg.webp) no-repeat center/cover !important;
  514. font-family: "Simsun";
  515. }
  516. .section-yrzh .point {
  517. right: 10%;
  518. top: 15%;
  519. }
  520. .section-yrzh .section-yrzhlogo,
  521. .section-yrzh .section1-wwbox img,
  522. .section-yrzh .section1-wwbox .title2,
  523. .section-yrzh .txt1,
  524. .section-yrzh .txt2,
  525. .section-yrzh .txt3 {
  526. opacity: 0;
  527. }
  528. .section-yrzh .entxt {
  529. font-family: "Minion Pro";
  530. }
  531. .section-yrzh .section-yrzhlogo {
  532. z-index: 1;
  533. width: 18rem;
  534. height: 4rem;
  535. margin-bottom: 1.5rem;
  536. display: block;
  537. background: url(https://vr.njmuseum.com/img/yrzh/logo.png) no-repeat center/contain;
  538. }
  539. .section-yrzh .section1-wwbox {
  540. position: relative;
  541. height: min(44rem, 70vh);
  542. margin: -3rem 0 -6rem;
  543. text-align: center;
  544. -webkit-transform: translate3d(0, -3%, 0);
  545. transform: translate3d(0, -3%, 0);
  546. }
  547. .section-yrzh .section1-wwbox img {
  548. z-index: 1;
  549. position: relative;
  550. max-width: 100%;
  551. max-height: 100%;
  552. }
  553. .section-yrzh .section1-wwbox .title2 {
  554. z-index: 2;
  555. position: absolute;
  556. top: 0;
  557. left: 0;
  558. width: 100%;
  559. height: 100%;
  560. background: url(https://vr.njmuseum.com/img/yrzh/section1-title.webp) no-repeat center/contain;
  561. }
  562. .section-yrzh .txt {
  563. text-align: center;
  564. }
  565. .section-yrzh .txt1 {
  566. font-size: 2rem;
  567. color: #ebeae3;
  568. margin-bottom: 1rem;
  569. letter-spacing: 0.2rem;
  570. }
  571. .section-yrzh .txt2 {
  572. font-size: 1.5rem;
  573. color: #d09d68;
  574. }
  575. .section-yrzh .txt3 {
  576. font-size: 0.75rem;
  577. color: #d09d68;
  578. letter-spacing: 0.015rem;
  579. }
  580. .section-yrzh.active .section-yrzhlogo,
  581. .section-yrzh.active .title1,
  582. .section-yrzh.active .txt1,
  583. .section-yrzh.active .txt2,
  584. .section-yrzh.active .txt3, .section-yrzh.down .section-yrzhlogo,
  585. .section-yrzh.down .title1,
  586. .section-yrzh.down .txt1,
  587. .section-yrzh.down .txt2,
  588. .section-yrzh.down .txt3, .section-yrzh.up .section-yrzhlogo,
  589. .section-yrzh.up .title1,
  590. .section-yrzh.up .txt1,
  591. .section-yrzh.up .txt2,
  592. .section-yrzh.up .txt3 {
  593. -webkit-animation: section1-fadeInUp 0.8s 0.5s forwards;
  594. animation: section1-fadeInUp 0.8s 0.5s forwards;
  595. }
  596. .section-yrzh.active .point, .section-yrzh.down .point, .section-yrzh.up .point {
  597. -webkit-animation: section1-fadeInUp 0.8s 1.2s forwards;
  598. animation: section1-fadeInUp 0.8s 1.2s forwards;
  599. }
  600. .section-yrzh.active .ewmbox, .section-yrzh.down .ewmbox, .section-yrzh.up .ewmbox {
  601. visibility: visible;
  602. opacity: 1;
  603. }
  604. .section-yrzh.active .section1-wwbox img, .section-yrzh.down .section1-wwbox img, .section-yrzh.up .section1-wwbox img {
  605. -webkit-animation: section1-fadeInUp-little 1.5s 0.8s forwards;
  606. animation: section1-fadeInUp-little 1.5s 0.8s forwards;
  607. }
  608. .section-yrzh.active .section1-wwbox .title2, .section-yrzh.down .section1-wwbox .title2, .section-yrzh.up .section1-wwbox .title2 {
  609. -webkit-animation: section1-fadeIn 1.2s 1s forwards;
  610. animation: section1-fadeIn 1.2s 1s forwards;
  611. }
  612. .section-yrzh.active .title1, .section-yrzh.down .title1, .section-yrzh.up .title1 {
  613. -webkit-animation-delay: 0.6s;
  614. animation-delay: 0.6s;
  615. }
  616. .section-yrzh.active .txt1, .section-yrzh.down .txt1, .section-yrzh.up .txt1 {
  617. -webkit-animation-delay: 0.9s;
  618. animation-delay: 0.9s;
  619. }
  620. .section-yrzh.active .txt2, .section-yrzh.down .txt2, .section-yrzh.up .txt2 {
  621. -webkit-animation-delay: 1s;
  622. animation-delay: 1s;
  623. }
  624. .section-yrzh.active .txt3, .section-yrzh.down .txt3, .section-yrzh.up .txt3 {
  625. -webkit-animation-delay: 1.1s;
  626. animation-delay: 1.1s;
  627. }
  628. @-webkit-keyframes section1-fadeIn {
  629. 0% {
  630. opacity: 0.5;
  631. }
  632. to {
  633. opacity: 1;
  634. }
  635. }
  636. @keyframes section1-fadeIn {
  637. 0% {
  638. opacity: 0.5;
  639. }
  640. to {
  641. opacity: 1;
  642. }
  643. }
  644. @-webkit-keyframes section1-fadeInUp-little {
  645. 0% {
  646. opacity: 0.1;
  647. -webkit-transform: translateY(3%);
  648. transform: translateY(3%);
  649. }
  650. to {
  651. opacity: 1;
  652. -webkit-transform: translateY(0);
  653. transform: translateY(0);
  654. }
  655. }
  656. @keyframes section1-fadeInUp-little {
  657. 0% {
  658. opacity: 0.1;
  659. -webkit-transform: translateY(3%);
  660. transform: translateY(3%);
  661. }
  662. to {
  663. opacity: 1;
  664. -webkit-transform: translateY(0);
  665. transform: translateY(0);
  666. }
  667. }
  668. @-webkit-keyframes section1-fadeInUp {
  669. 0% {
  670. opacity: 0.5;
  671. -webkit-transform: translateY(10%);
  672. transform: translateY(10%);
  673. }
  674. to {
  675. opacity: 1;
  676. -webkit-transform: translateY(0);
  677. transform: translateY(0);
  678. }
  679. }
  680. @keyframes section1-fadeInUp {
  681. 0% {
  682. opacity: 0.5;
  683. -webkit-transform: translateY(10%);
  684. transform: translateY(10%);
  685. }
  686. to {
  687. opacity: 1;
  688. -webkit-transform: translateY(0);
  689. transform: translateY(0);
  690. }
  691. }
  692. @-webkit-keyframes section1-fadeInDown {
  693. 0% {
  694. opacity: 0.5;
  695. -webkit-transform: translateY(0);
  696. transform: translateY(0);
  697. }
  698. to {
  699. opacity: 1;
  700. -webkit-transform: translateY(10%);
  701. transform: translateY(10%);
  702. }
  703. }
  704. @keyframes section1-fadeInDown {
  705. 0% {
  706. opacity: 0.5;
  707. -webkit-transform: translateY(0);
  708. transform: translateY(0);
  709. }
  710. to {
  711. opacity: 1;
  712. -webkit-transform: translateY(10%);
  713. transform: translateY(10%);
  714. }
  715. }
  716. #fp-nav {
  717. position: fixed;
  718. z-index: 100;
  719. top: 50%;
  720. opacity: 1;
  721. left: 1.5rem;
  722. width: 2rem;
  723. display: none;
  724. margin: 0 !important;
  725. -webkit-transform: translateY(-50%);
  726. transform: translateY(-50%);
  727. }
  728. #fp-nav ul li {
  729. position: relative;
  730. width: 2rem;
  731. height: 2rem;
  732. margin: 1.25rem 0;
  733. }
  734. #fp-nav ul li a.active span {
  735. background: none;
  736. background: url(https://vr.njmuseum.com/img/navicon-active.png) no-repeat center/contain;
  737. }
  738. #fp-nav ul li:after {
  739. content: "";
  740. position: absolute;
  741. bottom: -1.25rem;
  742. left: 50%;
  743. width: 100%;
  744. margin-left: -1rem;
  745. height: 1.25rem;
  746. background: url(https://vr.njmuseum.com/img/nav-bg.png) no-repeat center/auto 100%;
  747. }
  748. #fp-nav ul li:last-child:after {
  749. display: none;
  750. }
  751. #fp-nav span {
  752. position: absolute;
  753. border: 0;
  754. background: url(https://vr.njmuseum.com/img/navicon.png) no-repeat center/contain;
  755. width: 2rem;
  756. height: 2rem;
  757. top: 0;
  758. left: 0;
  759. -webkit-transition: all 0.1s ease-in-out;
  760. transition: all 0.1s ease-in-out;
  761. }
  762. .fp-slides {
  763. z-index: 1;
  764. height: 100%;
  765. overflow: hidden;
  766. position: relative;
  767. -webkit-transition: all 0.3s ease-out;
  768. transition: all 0.3s ease-out;
  769. }
  770. .fp-slides .fp-slide,
  771. .fp-slides .fp-slidesContainer {
  772. height: 100%;
  773. display: block;
  774. float: left;
  775. position: relative;
  776. }
  777. .fp-completely {
  778. position: relative;
  779. z-index: 2;
  780. }
  781. .nextbox {
  782. z-index: 1;
  783. position: absolute;
  784. bottom: 16px;
  785. left: 50%;
  786. -webkit-transform: translateX(-50%);
  787. transform: translateX(-50%);
  788. }
  789. .nextbox .addbox {
  790. position: absolute;
  791. border-top-right-radius: 40px;
  792. border-bottom-right-radius: 40px;
  793. background: url(https://vr.njmuseum.com/img/addboxbg.png) no-repeat center right/100% 100%;
  794. width: 66px;
  795. height: 40px;
  796. top: 50%;
  797. left: 62%;
  798. margin-top: -20px;
  799. -webkit-transition: all 0.3s;
  800. transition: all 0.3s;
  801. }
  802. .nextbox .addbox .add {
  803. background-color: #ba8746;
  804. width: 22px;
  805. height: 22px;
  806. border-radius: 50%;
  807. position: absolute;
  808. right: 13px;
  809. top: 50%;
  810. margin-top: -11px;
  811. -webkit-transition: all 0.3s;
  812. transition: all 0.3s;
  813. cursor: pointer;
  814. }
  815. .nextbox .addbox .add i {
  816. position: absolute;
  817. top: 50%;
  818. left: 50%;
  819. -webkit-transform: translate(-50%, -50%);
  820. transform: translate(-50%, -50%);
  821. width: 12px;
  822. height: 12px;
  823. }
  824. .nextbox .addbox .add i:before {
  825. content: "";
  826. position: absolute;
  827. top: 50%;
  828. left: 0;
  829. width: 12px;
  830. height: 1px;
  831. background-color: #000;
  832. border-radius: 2px;
  833. margin-top: -1px;
  834. }
  835. .nextbox .addbox .add i:after {
  836. content: "";
  837. position: absolute;
  838. top: 0;
  839. left: 50%;
  840. width: 1px;
  841. height: 12px;
  842. background-color: #000;
  843. border-radius: 2px;
  844. -webkit-transform: translateX(-50%);
  845. transform: translateX(-50%);
  846. -webkit-transition: all 0.3s;
  847. transition: all 0.3s;
  848. }
  849. .nextbox .addbox .add.close i:after {
  850. -webkit-transform: rotate(90deg) translateX(-50%);
  851. transform: rotate(90deg) translateX(-50%);
  852. }
  853. .nextbox .addbox .add:hover {
  854. -webkit-transform: scale(1.1);
  855. transform: scale(1.1);
  856. }
  857. .nextbox .addbox:hover {
  858. background-image: url(https://vr.njmuseum.com/img/addboxbg-active.png);
  859. }
  860. .nextbox .next {
  861. width: 75px;
  862. height: 75px;
  863. -webkit-transition: all 0.4s;
  864. transition: all 0.4s;
  865. }
  866. .nextbox .next .bg2,
  867. .nextbox .next .bg3,
  868. .nextbox .next .bg4 {
  869. position: absolute;
  870. width: 100%;
  871. height: 100%;
  872. background: no-repeat center/contain;
  873. left: 0;
  874. border-radius: 50%;
  875. }
  876. .nextbox .next .bg1 {
  877. position: absolute;
  878. z-index: 4;
  879. background-color: rgba(0, 0, 0, 0.7);
  880. width: 50px;
  881. height: 50px;
  882. top: 50%;
  883. left: 50%;
  884. margin-left: -25px;
  885. margin-top: -25px;
  886. border-radius: 50%;
  887. -webkit-animation: arrowAnim steps(5, end) 1.5s infinite;
  888. animation: arrowAnim steps(5, end) 1.5s infinite;
  889. background-image: url("https://vr.njmuseum.com/img/webp/arrow_anim.webp");
  890. background-size: auto 100% !important;
  891. }
  892. @-webkit-keyframes arrowAnim {
  893. 100% {
  894. background-position: -250px 0;
  895. }
  896. }
  897. @keyframes arrowAnim {
  898. 100% {
  899. background-position: -250px 0;
  900. }
  901. }
  902. .nextbox .next .bg2 {
  903. z-index: 3;
  904. background-image: url(https://vr.njmuseum.com/img/webp/shang-bg2.webp);
  905. }
  906. .nextbox .next .bg3 {
  907. z-index: 2;
  908. background-image: url(https://vr.njmuseum.com/img/webp/shang-bg3.webp);
  909. }
  910. .nextbox .next .bg4 {
  911. height: 64%;
  912. left: 50%;
  913. top: 50%;
  914. -webkit-transform: translate(-50%, -50%);
  915. transform: translate(-50%, -50%);
  916. width: 64%;
  917. z-index: 6;
  918. background-image: url(https://vr.njmuseum.com/img/webp/shang-bg4.webp);
  919. pointer-events: none;
  920. }
  921. .nextbox .next .bg2,
  922. .nextbox .next .bg3 {
  923. -webkit-animation: bgmoves 1s linear infinite;
  924. animation: bgmoves 1s linear infinite;
  925. }
  926. @-webkit-keyframes bgmoves {
  927. 0% {
  928. opacity: 0.8;
  929. -webkit-transform: scale(0.95);
  930. transform: scale(0.95);
  931. }
  932. 50% {
  933. opacity: 1;
  934. -webkit-transform: scale(1.05);
  935. transform: scale(1.05);
  936. }
  937. 100% {
  938. opacity: 0.8;
  939. -webkit-transform: scale(0.95);
  940. transform: scale(0.95);
  941. }
  942. }
  943. @keyframes bgmoves {
  944. 0% {
  945. opacity: 0.8;
  946. -webkit-transform: scale(0.95);
  947. transform: scale(0.95);
  948. }
  949. 50% {
  950. opacity: 1;
  951. -webkit-transform: scale(1.05);
  952. transform: scale(1.05);
  953. }
  954. 100% {
  955. opacity: 0.8;
  956. -webkit-transform: scale(0.95);
  957. transform: scale(0.95);
  958. }
  959. }
  960. .nextbox .next .ringCanvas {
  961. display: block;
  962. left: 0;
  963. left: 50%;
  964. margin: 0 auto;
  965. position: absolute;
  966. top: 50%;
  967. -webkit-transform: translate(-50%, -50%);
  968. transform: translate(-50%, -50%);
  969. z-index: 5;
  970. cursor: pointer;
  971. }
  972. .wwkicon {
  973. background: url(https://vr.njmuseum.com/img/webp/wwkicon.webp) no-repeat center/24px;
  974. position: absolute;
  975. z-index: 1;
  976. left: 50%;
  977. bottom: 16px;
  978. width: 40px;
  979. height: 40px;
  980. cursor: pointer;
  981. -webkit-transition: -webkit-transform 0.5s;
  982. transition: -webkit-transform 0.5s;
  983. transition: transform 0.5s;
  984. transition: transform 0.5s, -webkit-transform 0.5s;
  985. margin-left: -80px;
  986. }
  987. .wwkicon:hover {
  988. -webkit-transform: scale(1.1);
  989. transform: scale(1.1);
  990. }
  991. .indexgohome {
  992. position: absolute;
  993. left: 50%;
  994. bottom: 17px;
  995. width: 40px;
  996. height: 40px;
  997. background: url(https://vr.njmuseum.com/img/webp/gohome.webp) no-repeat center/26px;
  998. z-index: 1;
  999. cursor: pointer;
  1000. margin-left: -120px;
  1001. -webkit-transition: -webkit-transform 0.5s;
  1002. transition: -webkit-transform 0.5s;
  1003. transition: transform 0.5s;
  1004. transition: transform 0.5s, -webkit-transform 0.5s;
  1005. display: none;
  1006. }
  1007. .indexgohome:hover {
  1008. -webkit-transform: scale(1.1);
  1009. transform: scale(1.1);
  1010. }
  1011. .pcbody .loadbox {
  1012. display: none;
  1013. }
  1014. .pcbody .menuicon {
  1015. top: 2.5rem;
  1016. }
  1017. .pcbody .scroll-icon {
  1018. z-index: 1;
  1019. position: absolute;
  1020. bottom: 1.5rem;
  1021. left: 50%;
  1022. margin-left: -0.9rem;
  1023. display: -webkit-box;
  1024. display: -ms-flexbox;
  1025. display: flex;
  1026. -webkit-box-pack: center;
  1027. -ms-flex-pack: center;
  1028. justify-content: center;
  1029. -webkit-box-align: center;
  1030. -ms-flex-align: center;
  1031. align-items: center;
  1032. height: 3rem;
  1033. width: 1.9rem;
  1034. font-size: 22px;
  1035. color: rgba(255, 255, 255, 0.5);
  1036. border-radius: 2em;
  1037. border: solid 2px;
  1038. -webkit-transition: 0.4s;
  1039. transition: 0.4s;
  1040. cursor: pointer;
  1041. }
  1042. .pcbody .scroll-icon:hover {
  1043. background-color: rgba(255, 255, 255, 0.05);
  1044. color: #fff;
  1045. }
  1046. .pcbody .scroll-icon::after {
  1047. content: "";
  1048. width: 0.3rem;
  1049. height: 0.3rem;
  1050. background-color: #fff;
  1051. border-radius: 50%;
  1052. -webkit-animation: scroll-icon 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  1053. animation: scroll-icon 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  1054. }
  1055. @-webkit-keyframes scroll-icon {
  1056. 0% {
  1057. -webkit-transform: translateY(-12px);
  1058. transform: translateY(-12px);
  1059. opacity: 0;
  1060. }
  1061. 30%, 70% {
  1062. opacity: 1;
  1063. }
  1064. 100% {
  1065. -webkit-transform: translateY(12px);
  1066. transform: translateY(12px);
  1067. opacity: 0;
  1068. }
  1069. }
  1070. @keyframes scroll-icon {
  1071. 0% {
  1072. -webkit-transform: translateY(-12px);
  1073. transform: translateY(-12px);
  1074. opacity: 0;
  1075. }
  1076. 30%, 70% {
  1077. opacity: 1;
  1078. }
  1079. 100% {
  1080. -webkit-transform: translateY(12px);
  1081. transform: translateY(12px);
  1082. opacity: 0;
  1083. }
  1084. }
  1085. .wapbody .loadbox {
  1086. z-index: 10;
  1087. position: fixed;
  1088. top: 0;
  1089. left: 0;
  1090. width: 100%;
  1091. height: 100%;
  1092. display: none;
  1093. }
  1094. .wapbody .loadbox img {
  1095. width: 100%;
  1096. height: 100%;
  1097. -o-object-fit: cover;
  1098. object-fit: cover;
  1099. -webkit-animation: imgbigger 5s linear forwards;
  1100. animation: imgbigger 5s linear forwards;
  1101. }
  1102. @-webkit-keyframes imgbigger {
  1103. 0% {
  1104. -webkit-transform: scale(1);
  1105. transform: scale(1);
  1106. }
  1107. 100% {
  1108. -webkit-transform: scale(1.05);
  1109. transform: scale(1.05);
  1110. }
  1111. }
  1112. @keyframes imgbigger {
  1113. 0% {
  1114. -webkit-transform: scale(1);
  1115. transform: scale(1);
  1116. }
  1117. 100% {
  1118. -webkit-transform: scale(1.05);
  1119. transform: scale(1.05);
  1120. }
  1121. }
  1122. .wapbody .loadbox .skip {
  1123. position: absolute;
  1124. right: 2rem;
  1125. top: 2rem;
  1126. padding: 0.6rem 1.2rem;
  1127. font-size: 1.2rem;
  1128. color: #fff;
  1129. background-color: rgba(0, 0, 0, 0.5);
  1130. border-radius: 0.5rem;
  1131. font-family: "HeiTi";
  1132. }
  1133. .wapbody .scroll-icon {
  1134. position: fixed;
  1135. z-index: 1;
  1136. bottom: 0;
  1137. left: 50%;
  1138. margin-left: -5rem;
  1139. width: 10rem;
  1140. background: url(https://vr.njmuseum.com/img/scroll.gif) no-repeat center bottom/auto 6rem;
  1141. height: 11rem;
  1142. }
  1143. .wapbody .allbg video {
  1144. -o-object-fit: cover;
  1145. object-fit: cover;
  1146. }