productMK.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  1. @charset "UTF-8";
  2. /**
  3. *
  4. * @authors Your Name (you@example.org)
  5. * @date 2017-07-04 14:35:58
  6. * @version $Id$
  7. */
  8. @font-face {
  9. font-family: 'newFont';
  10. src: url('/static/css/HYJKJ.ttf') format('truetype');
  11. }
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. font-family: "PingFang SC", "STXihei", "Microsoft YaHei";
  16. }
  17. html {
  18. font-size: 625%;
  19. }
  20. body {
  21. width: 100%;
  22. background-color: #202020;
  23. }
  24. #fp-nav.right {
  25. z-index: 1;
  26. right: 0.8rem;
  27. }
  28. .m-header > .nav-wrap {
  29. z-index: 3;
  30. }
  31. .nav-shop {
  32. position: relative;
  33. }
  34. .nav-shop img{
  35. position: absolute;
  36. top: 0;
  37. bottom: 0;
  38. left: 0;
  39. right: 0;
  40. margin: auto;
  41. }
  42. .preview-thumb-fixed {
  43. position: absolute;
  44. top: 0;
  45. right: 0;
  46. width: 2.26rem;
  47. right: -1.8rem;
  48. height: 100vh;
  49. background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E9%A6%96%E9%A1%B5/preview_mk_bg.jpg');
  50. background-size: 100% 100%;
  51. -webkit-transition: right 0.5s cubic-bezier(0,0,.2,1);
  52. transition: right 0.5s cubic-bezier(0,0,.2,1);
  53. z-index: 2;
  54. }
  55. .preview-thumb-fixed::before {
  56. z-index: 0;
  57. display: inline-block;
  58. content: '';
  59. width: 0;
  60. height: 0;
  61. border: 10px solid #fff;
  62. border-color: transparent #fff transparent transparent;
  63. position: absolute;
  64. top: 50%;
  65. left: 5px;
  66. margin-top: -10px;
  67. }
  68. .preview-thumb-fixed:hover {
  69. right: 0;
  70. }
  71. .preview-thumb-fixed:hover::before {
  72. opacity: 0;
  73. }
  74. .preview-thumb-fixed:hover .preview-thumb-wrap {
  75. opacity: 1;
  76. }
  77. .preview-thumb-wrap {
  78. opacity: 0;
  79. position: absolute;
  80. width: 2.26rem;
  81. text-align: center;
  82. }
  83. .preview-thumb {
  84. z-index: 3;
  85. display: block;
  86. height: 13.6vh;
  87. position: relative;
  88. font-size: 0.16rem;
  89. text-align: center;
  90. }
  91. .preview-thumb-wrap .current {
  92. background-color: rgba(222,222,222,0.3);
  93. }
  94. .preview-thumb:hover {
  95. background-color: transparent;
  96. }
  97. .preview-current-icon {
  98. width: 3.8rem;
  99. height: 11vh;
  100. background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E9%A6%96%E9%A1%B5/preview_thumb_current.png') no-repeat center center;
  101. background-size: 100% 100%;
  102. -webkit-transform: translate(100%, -50%);
  103. transform: translate(100%, -50%);
  104. -webkit-transition: -webkit-transform 0.3s ease-out;
  105. transition: -webkit-transform 0.3s ease-out;
  106. transition: transform 0.3s ease-out;
  107. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  108. position: absolute;
  109. top: 50%;
  110. right: 0;
  111. z-index: 2;
  112. }
  113. .preview-current-icon::before {
  114. font-color: #0c0c0c;
  115. display: inline-block;
  116. position: absolute;
  117. top: 75%;
  118. right: 0.66rem;
  119. font-size: 12px;
  120. -webkit-transform: translate(50%, -50%);
  121. transform: translate(50%, -50%);
  122. }
  123. .preview-thumb:nth-child(1) .preview-current-icon {
  124. top: 63%;
  125. }
  126. .preview-thumb > img {
  127. width: auto;
  128. height: 6vh;
  129. position: absolute;
  130. left: 50%;
  131. top: 50%;
  132. transform: translate(-50%, -50%);
  133. -webkit-transform: translate(-50%, -50%);
  134. -webkit-transition: -webkit-transform 0.6s ease-out;
  135. -webkit-transition: -webkit-transform 0.6s;
  136. transition: -webkit-transform 0.6s;
  137. transition: transform 0.6s;
  138. transition: transform 0.6s, -webkit-transform 0.6s;
  139. -webkit-transform-origin: 50% 0;
  140. transform-origin: 50% 0;
  141. z-index: 3;
  142. }
  143. .preview-thumb:nth-child(1) {
  144. height: 18.4vh;
  145. background-size: 100% 56%;
  146. background-position: 2.26rem 80%;
  147. }
  148. .preview-thumb:nth-child(1) > img {
  149. top: 60%;
  150. }
  151. .preview-thumb-name {
  152. color: #f2e7ce;
  153. font-weight: 200;
  154. position: absolute;
  155. right: 50%;
  156. bottom: 1vh;
  157. -webkit-transform: translateX(50%);
  158. transform: translateX(50%);
  159. pointer-events: none;
  160. width: 100%;
  161. }
  162. .preview-thumb-ro {
  163. font-size: 0.24rem;
  164. color: #f2e7ce;
  165. position: absolute;
  166. left: 50%;
  167. top: 40%;
  168. -webkit-transform: translate(-50%,-50%);
  169. transform: translate(-50%,-50%);
  170. pointer-events: none;
  171. white-space: nowrap;
  172. z-index: 1;
  173. }
  174. .preview-thumb:nth-child(1) .preview-thumb-ro {
  175. top: 55%;
  176. }
  177. .preview-thumb-sub-fixed {
  178. width: 1.6rem;
  179. height: 100%;
  180. background-color: rgba(19,19,19,0.65);
  181. position: absolute;
  182. //right: 1.8rem;
  183. right: -1.6rem;
  184. // display: none;
  185. -webkit-transition: right 0.3s ease-out;
  186. transition: right 0.3s ease-out;
  187. }
  188. .preview-thumb-sub {
  189. width: 1.6rem;
  190. height: 700%;
  191. position: absolute;
  192. right: 1.8rem;
  193. visibility: hidden;
  194. opacity: 0;
  195. -webkit-transition: opacity 0.3s ease-out 0.3s;
  196. transition: opacity 0.3s ease-out 0.3s;
  197. z-index: 3;
  198. }
  199. .preview-thumb:nth-child(1) .preview-thumb-sub {
  200. top: 2.8vh;
  201. }
  202. .preview-thumb-subitem {
  203. position: relative;
  204. width: 100%;
  205. height: 13.6vh;
  206. }
  207. .preview-thumb-subitem > img {
  208. z-index: 2;
  209. width: auto;
  210. height: 7vh;
  211. position: absolute;
  212. top: 42%;
  213. left: 50%;
  214. -webkit-transform-origin: 0 0;
  215. transform-origin: 0 0;
  216. -webkit-transform: translate(-50%, -50%);
  217. transform: translate(-50%, -50%);
  218. -webkit-transition: -webkit-transform 0.3s ease-out;
  219. transition: transform 0.3s ease-out;
  220. }
  221. .preview-thumb-subitem > img:hover {
  222. -webkit-transform: scale(2) translate(-50%, -50%);
  223. transform: scale(2) translate(-50%, -50%);
  224. }
  225. .preview-thumb:nth-child(1) .preview-thumb-sub img{
  226. top: 58%;
  227. }
  228. .preview-thumb-subname {
  229. color: #f2e7ce;
  230. font-weight: 200;
  231. position: absolute;
  232. top: 78%;
  233. left: 50%;
  234. white-space: nowrap;
  235. -webkit-transform: translate(-50%, -50%);
  236. transform: translate(-50%, -50%);
  237. }
  238. .preview-thumb:nth-child(1) .preview-thumb-subname {
  239. top: 94%;
  240. }
  241. .preview-thumb .sub-current img {
  242. -webkit-transform: scale(2) translate(-50%, -50%);
  243. transform: scale(2) translate(-50%, -50%);
  244. }
  245. .preview-thumb .sub-current > .preview-thumb-subname {
  246. top: 110%;
  247. }
  248. .preview-thumb:nth-child(1) .sub-current > .preview-thumb-subname {
  249. top: 126%;
  250. }
  251. .scroll-wrap {
  252. width: 100%;
  253. position: relative;
  254. }
  255. .scroll-item {
  256. position: relative;
  257. width: 100%;
  258. height: 100vh;
  259. }
  260. .scroll-inner {
  261. width: 100%;
  262. height: 100vh;
  263. position: relative;
  264. background-position: center center;
  265. background-size: cover;
  266. }
  267. .scroll-inner .scroll-text {
  268. width: 100%;
  269. position: absolute;
  270. left: 50%;
  271. top: 50%;
  272. -webkit-transform: translate(-50%, -50%);
  273. transform: translate(-50%, -50%);
  274. text-align: center;
  275. }
  276. .scroll-text-subtitle {
  277. // font-family: 'newFont', 'Microsoft Yahei', 'STHeiti';
  278. // font-family: 'Microsoft Yahei', 'STHeiti';
  279. font-size: 0.84rem;
  280. letter-spacing: 20px;
  281. color: #f2e7ce;
  282. margin: 0.2rem 1rem;
  283. font-weight: 800;
  284. }
  285. .scroll-text-title {
  286. // font-family: 'Microsoft Yahei', 'STHeiti';
  287. // font-family: 'newFont', 'Microsoft Yahei', 'STHeiti';
  288. font-size: 0.72rem;
  289. color: #f2e7ce;
  290. margin: 0 1rem;
  291. font-weight: 800;
  292. }
  293. .scroll-text-content {
  294. font-size: 0.18rem;
  295. color: #f2e7ce;
  296. line-height: 0.4rem;
  297. margin: 0.2rem 20% 0 20%;
  298. font-weight: 300;
  299. }
  300. .scroll-text p{
  301. opacity: 0;
  302. transform: translateY(0.5rem);
  303. -webkit-transform: translateY(0.5rem);
  304. }
  305. .scroll-text-title, .scroll-text-subtitle {
  306. transition: all 0.7s cubic-bezier(0,0,.2,1);
  307. -webkit-transition: all 0.7s cubic-bezier(0,0,.2,1);
  308. }
  309. .scroll-text-content {
  310. transition: all 0.7s cubic-bezier(0,0,.2,1) 0.1s;
  311. -webkit-transition: all 0.7s cubic-bezier(0,0,.2,1) 0.1s;
  312. }
  313. .fp-completely .scroll-text p{
  314. opacity: 1;
  315. transform: translateY(0);
  316. -webkit-transform: translateY(0);
  317. }
  318. #fp-nav > ul > li > a > span {
  319. background-color: #fff;
  320. }
  321. .btn-buynow {
  322. width: 2.25rem;
  323. height: 0.62rem;
  324. position: absolute;
  325. left: 50%;
  326. -webkit-transform: translate(-50%,-50%);
  327. transform: translate(-50%,-50%);
  328. cursor: pointer;
  329. border-radius: 0.38rem;
  330. background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E9%A6%96%E9%A1%B5/preview_btn_02.png') no-repeat center center;
  331. background-size: contain;
  332. }
  333. // .btn-inner {
  334. // width: 2.25rem;
  335. // height: 0.62rem;
  336. // position: absolute;
  337. // left: 50%;
  338. // -webkit-transform: translate(-50%,-50%);
  339. // transform: translate(-50%,-50%);
  340. // cursor: pointer;
  341. // border-radius: 0.38rem;
  342. // background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E9%A6%96%E9%A1%B5/preview_btn_01.png') no-repeat center center;
  343. // background-size: contain;
  344. // }
  345. .btn-inner {
  346. width: 100%;
  347. height: 1.5rem;
  348. position: absolute;
  349. top: 100vh;
  350. // background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E9%A6%96%E9%A1%B5/btn_inner.png') no-repeat center center;
  351. // background-size: contain;
  352. background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E5%85%B1%E9%80%9A/btn_inner.jpg') center center;
  353. background-size: 100% auto;
  354. text-align: center;
  355. padding: 0.5rem 0;
  356. cursor: pointer;
  357. z-index: 1;
  358. box-shadow: 0 0 10px 5px #000 inset;
  359. -webkit-transition: background-size 1s ease;
  360. transition: background-size 1s ease;
  361. }
  362. .btn-inner-title {
  363. font-size: 0.18rem;
  364. line-height: 0.5rem;
  365. color: #aaa;
  366. }
  367. .btn-inner-subtitle {
  368. font-size: 0.3rem;
  369. line-height: 0.5rem;
  370. color: #dab379;
  371. }
  372. .btn-inner:hover {
  373. position: absolute;
  374. top: calc(100vh - 0.75rem);
  375. background-size: 120% auto;
  376. box-shadow: 0 0 10px 5px #000;
  377. padding: 1.25rem 0;
  378. }
  379. .btn-inner:hover .btn-inner-subtitle {
  380. font-size: 0.32rem;
  381. font-weight: 600;
  382. color: #fff;
  383. }
  384. .btn-outer {
  385. width: 2.25rem;
  386. height: 0.62rem;
  387. position: absolute;
  388. left: 50%;
  389. -webkit-transform: translate(-50%,-50%);
  390. transform: translate(-50%,-50%);
  391. cursor: pointer;
  392. border-radius: 0.38rem;
  393. background: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E5%85%B1%E9%80%9A/outer_btn.png') no-repeat center center;
  394. background-size: contain;
  395. }
  396. .btn-innerlast {
  397. top: 86%;
  398. }
  399. .btn-first {
  400. top: 92%;
  401. }
  402. .btn-last {
  403. top: 91%;
  404. margin-top: -375px;
  405. }
  406. .btn-left {
  407. margin-left: -1.8rem;
  408. }
  409. .btn-right {
  410. margin-left: 1.8rem;
  411. }
  412. .video-wrap {
  413. position: absolute;
  414. left: 1.1rem;
  415. bottom: 0.8rem;
  416. font-size: 0;
  417. }
  418. .video-title {
  419. font-size: 0.28rem;
  420. color: #fffde8;
  421. margin: 5px;
  422. }
  423. .video-tv {
  424. margin: 15px 0;
  425. cursor: pointer;
  426. }
  427. .video-tv img:hover {
  428. opacity: 0.6;
  429. }
  430. .video-text {
  431. font-size: 12px;
  432. color: #fffde8;
  433. margin: 5px;
  434. line-height: 20px;
  435. }
  436. .inner-wrap .scroll-item:nth-child(1) .scroll-inner .scroll-text {
  437. top: 20%;
  438. }
  439. .inner-wrap .scroll-item:nth-child(2) .scroll-inner .scroll-text {
  440. top: 14%;
  441. }
  442. .inner-wrap .scroll-item:nth-child(3) .scroll-inner .scroll-text {
  443. top: 18%;
  444. }
  445. .inner-wrap .scroll-item:nth-child(4) .scroll-inner .scroll-text {
  446. top: 22%;
  447. }
  448. .inner-wrap .scroll-item:nth-child(5) .scroll-inner .scroll-text {
  449. top: 20%;
  450. }
  451. .inner-wrap .scroll-item:nth-child(1) .scroll-text-title {
  452. font-size: 0.94rem;
  453. }
  454. .inner-wrap .scroll-item:nth-child(1) .scroll-text-content {
  455. font-size: 0.3rem;
  456. letter-spacing: 1px;
  457. }
  458. .video-layer {
  459. display: none;
  460. width: 100%;
  461. height: 100vh;
  462. background-color: rgba(0,0,0,0.8);
  463. text-align: center;
  464. position: absolute;
  465. top: 0;
  466. left: 0;
  467. z-index: 101;
  468. }
  469. .btn-videoplay {
  470. background-image: url('http://airsmart-web.oss-cn-shanghai.aliyuncs.com/upload/images/%E5%85%B1%E9%80%9A/btn-play.png');
  471. background-size: contain;
  472. width: 96px;
  473. height: 96px;
  474. position: absolute;
  475. top: 0;
  476. left: 0;
  477. right: 0;
  478. bottom: 0;
  479. margin: auto;
  480. cursor: pointer;
  481. }
  482. .video-layer video {
  483. width: 80%;
  484. height: auto;
  485. position: absolute;
  486. left: 50%;
  487. top: 50%;
  488. -webkit-transform: translate(-50%, -50%);
  489. transform: translate(-50%, -50%);
  490. }
  491. .btn-close {
  492. font-size: 0.72rem;
  493. position: absolute;
  494. top: 0.4rem;
  495. right: 0.4rem;
  496. color: #fff;
  497. text-align: center;
  498. -webkit-transform: rotate(45deg);
  499. transform: rotate(45deg);
  500. cursor: pointer;
  501. }
  502. .mb-scroll-hint {
  503. display: none;
  504. }
  505. .mb-black-top {
  506. display: none;
  507. position: absolute;
  508. top: 0;
  509. left: 0;
  510. width: 100%;
  511. height: 1rem;
  512. background-color: rgb(17,17,17);
  513. }
  514. .mb-scroll-text {
  515. display: none;
  516. }
  517. .bg-alpha-layer {
  518. display: none;
  519. width: 100%;
  520. height: 100%;
  521. position: fixed;
  522. top: 0;
  523. left: 0;
  524. background-color: rgba(0,0,0,0.5);
  525. pointer-events: none;
  526. z-index: 0;
  527. }
  528. .scroll-video {
  529. overflow: hidden;
  530. }
  531. .scroll-video #scrollVideo{
  532. width: 100%;
  533. height: auto;
  534. position: absolute;
  535. top: 50%;
  536. left: 50%;
  537. // right: 0;
  538. // bottom: 0;
  539. // margin: auto;
  540. -webkit-transform: translate(-50%, -50%);
  541. -ms-transform: translate(-50%, -50%);
  542. transform: translate(-50%, -50%);
  543. }
  544. .scroll-video .scroll-video-title {
  545. font-size: 0.6rem;
  546. color: #fff;
  547. text-align: center;
  548. position: absolute;
  549. top: 32%;
  550. width: 100%;
  551. }
  552. @media (min-width: 959px) {
  553. html {
  554. font-size: 325%;
  555. }
  556. .scroll-text-content {
  557. font-size: 14px;
  558. }
  559. }
  560. @media (min-width: 1279px) {
  561. html {
  562. font-size: 425%;
  563. }
  564. .scroll-text-content {
  565. font-size: 16px;
  566. }
  567. }
  568. @media (min-width: 1599px) {
  569. html {
  570. font-size: 525%;
  571. }
  572. .scroll-text-content {
  573. font-size: 16px;
  574. }
  575. }
  576. @media (min-width: 1919px) {
  577. html {
  578. font-size: 625%;
  579. }
  580. }
  581. .ani-bgscale-x {
  582. -webkit-animation: bgscale-x 2s cubic-bezier(0,0,.2,1);
  583. animation: bgscale-x 2s cubic-bezier(0,0,.2,1);
  584. }
  585. .ani-bgscale-y {
  586. -webkit-animation: bgscale-y 2s cubic-bezier(0,0,.2,1);
  587. animation: bgscale-y 2s cubic-bezier(0,0,.2,1);
  588. }
  589. @-webkit-keyframes bgscale-x {
  590. 0% {
  591. -webkit-background-size: 115% auto;
  592. background-size: 115% auto;
  593. }
  594. 100% {
  595. -webkit-background-size: 115% auto;
  596. background-size: 100% auto;
  597. }
  598. }
  599. @keyframes bgscale-x {
  600. 0% {
  601. -webkit-background-size: 115% auto;
  602. background-size: 115% auto;
  603. }
  604. 100% {
  605. -webkit-background-size: 115% auto;
  606. background-size: 100% auto;
  607. }
  608. }
  609. @-webkit-keyframes bgscale-y {
  610. 0% {
  611. -webkit-background-size: auto 115%;
  612. background-size: auto 115%;
  613. }
  614. 100% {
  615. -webkit-background-size: auto 100%;
  616. background-size: auto 100%;
  617. }
  618. }
  619. @keyframes bgscale-y {
  620. 0% {
  621. -webkit-background-size: auto 115%;
  622. background-size: auto 115%;
  623. opacity: 0.3;
  624. }
  625. 100% {
  626. -webkit-background-size: auto 100%;
  627. background-size: auto 100%;
  628. opacity: 1;
  629. }
  630. }
  631. @media (max-device-width: 1081px) {
  632. html {
  633. font-size: 585%;
  634. }
  635. .video-wrap {
  636. display: none;
  637. }
  638. .scroll-text-title {
  639. margin: 0.2rem 0;
  640. font-size: 0.4rem;
  641. }
  642. .scroll-text-subtitle {
  643. margin: 0;
  644. font-size: 0.5rem;
  645. letter-spacing: 2px;
  646. }
  647. .scroll-text-content {
  648. margin: 0 0.4rem;
  649. font-size: 0.18rem;
  650. letter-spacing: 0;
  651. line-height: 0.26rem;
  652. text-align: center;
  653. }
  654. .btn-first {
  655. top: 92vh;
  656. margin-top: -0.31rem;
  657. }
  658. .btn-last {
  659. // top: 94%;
  660. top: 92vh;
  661. margin-top: 0;
  662. }
  663. #fp-nav {
  664. display: none;
  665. }
  666. .preview-thumb-fixed {
  667. display: none;
  668. }
  669. .effect-layer {
  670. display: none;
  671. }
  672. .mb-scroll-hint {
  673. display: block;
  674. position: absolute;
  675. bottom: 0.12rem;
  676. left: 50%;
  677. margin-left: -0.2rem;
  678. -webkit-animation: mb-hint-move 1s linear infinite;
  679. animation: mb-hint-move 1s linear infinite;
  680. }
  681. .mb-scroll-hint img {
  682. width: 0.4rem;
  683. height: auto;
  684. }
  685. @keyframes mb-hint-move {
  686. 0% {
  687. bottom: 0;
  688. }
  689. 50% {
  690. bottom: 10px;
  691. }
  692. 100% {
  693. bottom: 0;
  694. }
  695. }
  696. @-webkit-keyframes mb-hint-move {
  697. 0% {
  698. bottom: 0;
  699. }
  700. 50% {
  701. bottom: 10px;
  702. }
  703. 100% {
  704. bottom: 0;
  705. }
  706. }
  707. .ani-bgscale-x {
  708. -webkit-animation: none;
  709. animation: none;
  710. }
  711. .ani-bgscale-y {
  712. -webkit-animation: none;
  713. animation: none;
  714. }
  715. .mb-black-top {
  716. display: block;
  717. }
  718. // .mb-scroll-text {
  719. // display: block;
  720. // }
  721. // .pc-scroll-text {
  722. // display: none;
  723. // }
  724. .inner-wrap .pc-scroll-text {
  725. display: none;
  726. }
  727. .inner-wrap .mb-scroll-text {
  728. display: block;
  729. }
  730. .outer-wrap .mb-scroll-text {
  731. display: block;
  732. }
  733. .outer-wrap .pc-scroll-text {
  734. display: none;
  735. }
  736. }
  737. @media (max-device-width: 720px) {
  738. html {
  739. font-size: 465%;
  740. }
  741. }
  742. @media (max-device-width: 660px) {
  743. html {
  744. font-size: 445%;
  745. }
  746. }
  747. @media (max-device-width: 600px) {
  748. html {
  749. font-size: 425%;
  750. }
  751. }
  752. @media (max-device-width: 540px) {
  753. html {
  754. font-size: 405%;
  755. }
  756. }
  757. @media (max-device-width: 480px) {
  758. html {
  759. font-size: 385%;
  760. }
  761. }
  762. @media (max-device-width: 420px) {
  763. html {
  764. font-size: 365%;
  765. }
  766. }
  767. @media (max-device-width: 360px) {
  768. html {
  769. font-size: 345%;
  770. }
  771. }
  772. @media (max-device-width: 240px) {
  773. html {
  774. font-size: 305%;
  775. }
  776. }