style.css 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. }
  8. .container-fluid {
  9. width: 80vw;
  10. margin: 0 auto;
  11. }
  12. @media screen and (max-width: 767px) {
  13. .container-fluid {
  14. width: 90vw;
  15. }
  16. }
  17. body {
  18. background: #fff;
  19. }
  20. body .learn-more {
  21. color: #fff;
  22. width: 30%;
  23. height: 50px;
  24. margin: 10px 0px;
  25. font-size: 16px;
  26. border-radius: 0%;
  27. border: none;
  28. font-weight: 900;
  29. background: #93000a;
  30. vertical-align: top;
  31. -webkit-transition: 0.3s;
  32. transition: 0.3s;
  33. }
  34. body .learn-more:hover {
  35. color: #93000a;
  36. background: #fff;
  37. border: 1px solid #93000a;
  38. }
  39. #Navigation {
  40. width: 100vw;
  41. background-color: #000;
  42. color: #fff;
  43. position: fixed;
  44. z-index: 20;
  45. }
  46. @media screen and (max-width: 767px) {
  47. #Navigation {
  48. width: 100vw;
  49. }
  50. }
  51. #Navigation #logo {
  52. padding-top: 1.3vw;
  53. }
  54. @media screen and (max-width: 767px) {
  55. #Navigation #logo {
  56. padding: 10px;
  57. }
  58. }
  59. #Navigation #logo img {
  60. width: 180px;
  61. }
  62. @media screen and (max-width: 767px) {
  63. #Navigation #logo img {
  64. width: 140px;
  65. }
  66. }
  67. #Navigation #link {
  68. padding: 4vw 1vw 2vw 1vw;
  69. }
  70. @media screen and (max-width: 767px) {
  71. #Navigation #link {
  72. display: none;
  73. }
  74. }
  75. #Navigation #link a {
  76. text-decoration: none;
  77. color: #fff;
  78. letter-spacing: 1px;
  79. font-size: 0.9rem;
  80. font-weight: 600;
  81. cursor: pointer;
  82. padding: 15px;
  83. position: relative;
  84. }
  85. #Navigation #link a :hover {
  86. opacity: 0.8;
  87. }
  88. #Navigation #link a:after {
  89. content: "";
  90. display: block;
  91. width: 80%;
  92. height: 3px;
  93. background-color: #fff;
  94. position: absolute;
  95. left: 12%;
  96. bottom: 0;
  97. -webkit-transition: all 0.3s;
  98. transition: all 0.3s;
  99. opacity: 0;
  100. }
  101. #Navigation #link a:hover:after {
  102. width: 80%;
  103. opacity: 1;
  104. }
  105. @media screen and (max-width: 1024px) {
  106. #Navigation #link a {
  107. padding: 5px;
  108. padding-top: 2vw;
  109. }
  110. }
  111. #Navigation #menu-btn1 {
  112. position: absolute;
  113. right: 2vw;
  114. top: 8vw;
  115. width: 15vw;
  116. z-index: 6;
  117. }
  118. @media screen and (min-width: 1025px) {
  119. #Navigation #menu-btn1 {
  120. display: none;
  121. }
  122. }
  123. @media screen and (min-width: 768px) {
  124. #Navigation #menu-btn1 {
  125. display: none;
  126. }
  127. }
  128. #menu-box {
  129. width: 40vw;
  130. right: 0px;
  131. position: fixed;
  132. z-index: 20;
  133. overflow: hidden;
  134. }
  135. @media screen and (min-width: 1025px) {
  136. #menu-box {
  137. display: none;
  138. }
  139. }
  140. #menu-box hr {
  141. margin: 5px auto !important;
  142. width: 25vw;
  143. background: #fff;
  144. opacity: 1 !important;
  145. }
  146. #menu-box #menu-box2 {
  147. padding-bottom: 5vw;
  148. position: relative;
  149. width: 40vw;
  150. background-color: #313131;
  151. z-index: 7;
  152. text-align: center;
  153. }
  154. #menu-box #menu-box2 .close {
  155. padding: 30px 15px 15px 15px;
  156. }
  157. #menu-box #menu-box2 a {
  158. display: inline-block;
  159. text-decoration: none;
  160. color: #fff;
  161. font-size: 14px;
  162. font-weight: 900;
  163. text-align: center;
  164. padding: 0 !important;
  165. }
  166. #banner {
  167. width: 100vw;
  168. display: inline-block;
  169. background: url(./img/banner2.jpg), linear-gradient(75deg, rgba(0, 0, 0, 0.52) 35%, transparent 30%);
  170. background-position: center center;
  171. background-size: cover;
  172. background-blend-mode: overlay;
  173. }
  174. @media screen and (max-width: 767px) {
  175. #banner {
  176. background: url(./img/mobile-banner1.jpg);
  177. }
  178. }
  179. #banner #banner-container {
  180. width: 80vw;
  181. margin: 50px auto;
  182. padding-bottom: 5vw;
  183. }
  184. @media screen and (max-width: 767px) {
  185. #banner #banner-container {
  186. width: 85vw;
  187. padding-bottom: 10vw;
  188. }
  189. }
  190. #banner #banner-container .youtube {
  191. width: 80vw;
  192. padding-top: 10vw;
  193. margin: 0 auto;
  194. color: #fff;
  195. }
  196. @media screen and (max-width: 767px) {
  197. #banner #banner-container .youtube {
  198. padding-top: 10vw;
  199. margin: 0 auto;
  200. }
  201. }
  202. #banner #banner-container .youtube #youtube-text h1 {
  203. font-size: 40px;
  204. text-align: left;
  205. }
  206. @media screen and (max-width: 767px) {
  207. #banner #banner-container .youtube #youtube-text h1 {
  208. font-size: 30px;
  209. margin: 0;
  210. }
  211. }
  212. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  213. width: 380px;
  214. }
  215. @media screen and (max-width: 767px) {
  216. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  217. width: 80vw;
  218. }
  219. }
  220. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  221. width: 350px;
  222. }
  223. @media screen and (max-width: 767px) {
  224. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  225. width: 80vw;
  226. }
  227. }
  228. #banner #banner-container .youtube #youtube-text p {
  229. width: 300px;
  230. }
  231. @media screen and (max-width: 767px) {
  232. #banner #banner-container .youtube #youtube-text p {
  233. width: 80vw;
  234. }
  235. }
  236. #banner #banner-container .youtube hr {
  237. width: 12vw;
  238. height: 2px;
  239. color: #fff;
  240. margin: 20px 0px;
  241. opacity: 1 !important;
  242. }
  243. @media screen and (max-width: 767px) {
  244. #banner #banner-container .youtube hr {
  245. width: 80vw;
  246. }
  247. }
  248. #banner #banner-container .youtube .youtube-text-hr {
  249. width: 20vw;
  250. padding: 10px;
  251. }
  252. @media screen and (max-width: 767px) {
  253. #banner #banner-container .youtube .youtube-text-hr {
  254. width: 80vw;
  255. }
  256. }
  257. #banner #banner-container .youtube p {
  258. font-size: 18px;
  259. }
  260. #banner #banner-container .youtube h1 {
  261. font-size: 30px;
  262. }
  263. @media screen and (max-width: 767px) {
  264. #banner #banner-container .youtube h1 {
  265. font-size: 25px;
  266. padding: 15px 0px;
  267. }
  268. }
  269. @media screen and (max-width: 767px) {
  270. #banner #banner-container .youtube .learn-more {
  271. width: 100%;
  272. margin: 10px 0px;
  273. }
  274. }
  275. #banner #banner-container .contact-form-destop {
  276. text-align: center;
  277. }
  278. @media screen and (max-width: 767px) {
  279. #banner #banner-container .contact-form-destop {
  280. display: none;
  281. }
  282. }
  283. #banner #banner-container .contact-form-destop h1 {
  284. padding: 5vw 0 1vw 0;
  285. color: #fff;
  286. }
  287. @media screen and (max-width: 767px) {
  288. #banner #banner-container .contact-form-destop h1 {
  289. font-size: 20px;
  290. padding: 15px;
  291. }
  292. }
  293. #banner #banner-container .contact-form-destop #email {
  294. width: 50%;
  295. font-size: 16px;
  296. margin: 15px 0;
  297. padding: 10px 15px;
  298. border: none;
  299. height: 50px;
  300. border: 1px solid #313131;
  301. }
  302. @media screen and (max-width: 767px) {
  303. #banner #banner-container .contact-form-destop #email {
  304. display: none;
  305. }
  306. }
  307. #banner #banner-container .contact-form-destop .btn {
  308. color: #fff;
  309. width: 25%;
  310. height: 50px;
  311. margin: 15px 0px;
  312. font-size: 16px;
  313. border-radius: 0%;
  314. border: none;
  315. font-weight: 900;
  316. background: #93000a;
  317. vertical-align: top;
  318. -webkit-transition: 0.3s;
  319. transition: 0.3s;
  320. }
  321. @media screen and (max-width: 767px) {
  322. #banner #banner-container .contact-form-destop .btn {
  323. display: none;
  324. }
  325. }
  326. #banner #banner-container .contact-form-destop .btn:hover {
  327. font-size: 17px;
  328. }
  329. @media screen and (min-width: 1025px) {
  330. #banner #banner-container .contact-form-mobile {
  331. display: none;
  332. }
  333. }
  334. #banner #banner-container .contact-form-mobile h1 {
  335. text-align: center;
  336. padding: 10vw 0 1vw 0;
  337. color: #fff;
  338. font-size: 20px;
  339. }
  340. #banner #banner-container .contact-form-mobile #email-moblie {
  341. margin: 10px auto;
  342. width: 75%;
  343. padding: 10px 15px;
  344. border: none;
  345. height: 50px;
  346. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  347. background-size: 20px 15px;
  348. background-color: #fff;
  349. text-align: center;
  350. color: #313131;
  351. font-weight: 900;
  352. }
  353. @media screen and (min-width: 1025px) {
  354. #banner #banner-container .contact-form-mobile #email-moblie {
  355. display: none;
  356. }
  357. }
  358. #banner #banner-container #email-arrow {
  359. width: 15%;
  360. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  361. background-size: 10px 15px;
  362. background-color: #93000a;
  363. height: 50px;
  364. margin: 10px auto;
  365. font-size: 16px;
  366. border-radius: 0%;
  367. border: none;
  368. font-weight: 900;
  369. vertical-align: top;
  370. }
  371. @media screen and (min-width: 1025px) {
  372. #banner #banner-container #email-arrow {
  373. display: none;
  374. }
  375. }
  376. #sec01 {
  377. padding-top: 5vw;
  378. padding-bottom: 5vw;
  379. }
  380. #sec01 .NEWS {
  381. width: 80vw;
  382. margin: 0 auto;
  383. margin-top: -130px;
  384. margin-bottom: 100px;
  385. }
  386. @media screen and (max-width: 767px) {
  387. #sec01 .NEWS {
  388. margin-top: -70px;
  389. width: 90vw;
  390. }
  391. }
  392. #sec01 .NEWS h1 {
  393. padding: 0;
  394. margin: 0;
  395. font-weight: 900;
  396. color: #fff;
  397. letter-spacing: 3px;
  398. font-size: 60px;
  399. }
  400. @media screen and (max-width: 767px) {
  401. #sec01 .NEWS h1 {
  402. font-size: 50px;
  403. }
  404. }
  405. #sec01 #sec01-container {
  406. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  407. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  408. margin: 0 auto !important;
  409. }
  410. @media screen and (max-width: 767px) {
  411. #sec01 #sec01-container {
  412. width: 90vw;
  413. margin: 0 auto;
  414. }
  415. }
  416. #sec01 #sec01-container #sec01-container-card .card {
  417. padding: 30px;
  418. border: none !important;
  419. }
  420. @media screen and (max-width: 767px) {
  421. #sec01 #sec01-container #sec01-container-card .card {
  422. padding: 15px;
  423. }
  424. }
  425. #sec01 #sec01-container #sec01-container-card .card h1 {
  426. padding: 15px;
  427. font-size: 40px;
  428. font-weight: 900;
  429. color: #9b9b9b;
  430. }
  431. #sec01 #sec01-container #sec01-container-card .card p {
  432. padding: 5px;
  433. font-size: 18px;
  434. margin-bottom: 0 !important;
  435. }
  436. @media screen and (max-width: 767px) {
  437. #sec01 #sec01-container #sec01-container-card .card p {
  438. padding: 0px;
  439. font-size: 16px;
  440. }
  441. }
  442. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  443. padding: 15px 0px;
  444. font-weight: 900;
  445. font-size: 22px;
  446. }
  447. @media screen and (max-width: 767px) {
  448. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  449. font-size: 18px;
  450. }
  451. }
  452. #sec01 #sec01-container #sec01-container-card .card a {
  453. text-decoration: none;
  454. color: #000;
  455. -webkit-transition: 0.3s;
  456. transition: 0.3s;
  457. cursor: pointer;
  458. }
  459. #sec01 #sec01-container #sec01-container-card .card a:hover {
  460. color: #2828ff;
  461. }
  462. #sec01 #sec01-container #sec01-container-card .card img {
  463. text-align: center;
  464. width: 35vw;
  465. height: 240px;
  466. -o-object-fit: cover;
  467. object-fit: cover;
  468. }
  469. @media screen and (max-width: 767px) {
  470. #sec01 #sec01-container #sec01-container-card .card img {
  471. width: 85vw;
  472. height: 200px;
  473. margin: 0 auto;
  474. }
  475. }
  476. #sec02 {
  477. background: #414141;
  478. padding-top: 3vw;
  479. }
  480. @media screen and (max-width: 767px) {
  481. #sec02 {
  482. display: none;
  483. }
  484. }
  485. #sec02 #sec02-container {
  486. width: 90vw;
  487. padding: 15px;
  488. font-weight: 900;
  489. color: #fff;
  490. position: relative;
  491. }
  492. #sec02 #sec02-container #sec02-top-box {
  493. position: relative;
  494. }
  495. #sec02 #sec02-container #sec02-top-box #sec02-content {
  496. position: absolute;
  497. top: 10px;
  498. left: 300px;
  499. }
  500. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  501. color: #000;
  502. width: 13vw;
  503. }
  504. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  505. display: inline;
  506. width: 150px;
  507. height: 200px;
  508. -o-object-fit: cover;
  509. object-fit: cover;
  510. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  511. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  512. }
  513. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  514. font-size: 30px;
  515. }
  516. #sec02-moblie {
  517. background: #414141;
  518. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  519. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  520. padding-top: 3vw;
  521. padding-bottom: 10vw;
  522. }
  523. @media screen and (min-width: 1025px) {
  524. #sec02-moblie {
  525. display: none;
  526. }
  527. }
  528. #sec02-moblie #sec02-container {
  529. padding: 15px;
  530. font-weight: 900;
  531. color: #fff;
  532. width: 100vw;
  533. }
  534. #sec02-moblie #sec02-container .sec02-top1-box img {
  535. width: 80px;
  536. }
  537. #sec02-moblie #sec02-container .sec02-top1-box span {
  538. font-size: 30px;
  539. }
  540. #sec02-moblie #sec02-container .sec02-top1-box .sec02-top-text {
  541. text-align: center;
  542. }
  543. #sec02-moblie #sec02-container #sec02-top-box {
  544. width: 95vw;
  545. margin: 5px;
  546. }
  547. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  548. color: #000;
  549. }
  550. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  551. width: 100px;
  552. height: 130px;
  553. }
  554. @media screen and (max-width: 350px) {
  555. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  556. width: 100px;
  557. height: 130px;
  558. }
  559. }
  560. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  561. width: 80px;
  562. height: 120px;
  563. }
  564. @media screen and (max-width: 350px) {
  565. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  566. width: 70px;
  567. height: 100px;
  568. }
  569. }
  570. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  571. font-size: 12px;
  572. text-align: left;
  573. }
  574. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  575. font-size: 30px;
  576. }
  577. @media screen and (max-width: 350px) {
  578. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  579. font-size: 25px;
  580. }
  581. }
  582. #sec03 {
  583. padding-top: 15vw;
  584. padding-bottom: 5vw;
  585. }
  586. @media screen and (max-width: 767px) {
  587. #sec03 {
  588. display: none;
  589. }
  590. }
  591. #sec03 #sec03-table .sec03-table-title {
  592. font-family: 微軟正黑體;
  593. font-weight: 900;
  594. padding: 15px;
  595. font-size: 35px;
  596. }
  597. #sec03 #sec03-table .table th {
  598. font-size: 40px;
  599. display: table-cell;
  600. vertical-align: middle;
  601. }
  602. #sec03 #sec03-table .table td {
  603. padding: 15px;
  604. }
  605. #sec03 #sec03-table .table td a {
  606. text-decoration: none;
  607. color: #000;
  608. }
  609. #sec03 #sec03-table .table img {
  610. width: 50px;
  611. }
  612. #sec03 #sec03-table .table .sec03-table-text {
  613. padding: 10px;
  614. display: table-cell;
  615. vertical-align: middle;
  616. }
  617. #sec03 #sec03-table .table .sec03-table-text h1 {
  618. font-size: 20px;
  619. margin: 0;
  620. }
  621. #sec03 #sec03-table .table .sec03-table-text p {
  622. margin: 0;
  623. }
  624. #sec03-moblie {
  625. position: relative;
  626. }
  627. #sec03-moblie .arrow-table {
  628. position: fixed;
  629. width: 25px;
  630. right: 15px;
  631. bottom: 250px;
  632. z-index: 6;
  633. }
  634. @media screen and (max-width: 350px) {
  635. #sec03-moblie .arrow-table {
  636. right: 10px;
  637. bottom: 200px;
  638. }
  639. }
  640. #sec03-moblie .sec03-table-title,
  641. #sec03-moblie .sec03-table-title2 {
  642. font-family: 微軟正黑體;
  643. font-weight: 900;
  644. font-size: 14px;
  645. display: inline-block;
  646. color: #9b9b9b;
  647. }
  648. #sec03-moblie .contant-toggle {
  649. display: inline-block;
  650. color: #000;
  651. padding-bottom: 10px;
  652. border-bottom: 2px solid #000;
  653. }
  654. #sec03-moblie #sec03-slider {
  655. padding-top: 5vw;
  656. }
  657. #sec03-moblie #sec03-slider .slick-slide img {
  658. display: inline;
  659. }
  660. #sec03-moblie #sec03-slider #sec03-slider1,
  661. #sec03-moblie #sec03-slider #sec03-slider2 {
  662. margin-left: 10px;
  663. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  664. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  665. }
  666. @media screen and (max-width: 350px) {
  667. #sec03-moblie #sec03-slider #sec03-slider1,
  668. #sec03-moblie #sec03-slider #sec03-slider2 {
  669. margin: 0 5px;
  670. }
  671. }
  672. #sec03-moblie #sec03-slider .table th {
  673. font-size: 40px;
  674. display: table-cell;
  675. vertical-align: middle;
  676. padding: 15px;
  677. }
  678. @media screen and (max-width: 350px) {
  679. #sec03-moblie #sec03-slider .table th {
  680. font-size: 25px;
  681. }
  682. }
  683. #sec03-moblie #sec03-slider .table td {
  684. display: table-cell;
  685. vertical-align: middle;
  686. padding: 15px;
  687. padding: 10px 0;
  688. }
  689. @media screen and (max-width: 350px) {
  690. #sec03-moblie #sec03-slider .table td {
  691. padding: 0px;
  692. }
  693. }
  694. #sec03-moblie #sec03-slider .table td a {
  695. text-decoration: none;
  696. color: #000;
  697. }
  698. #sec03-moblie #sec03-slider .table img {
  699. width: 50px;
  700. }
  701. #sec03-moblie #sec03-slider .table .sec03-table-text {
  702. padding: 0px 0px 0px 3px;
  703. display: table-cell;
  704. vertical-align: middle;
  705. }
  706. @media screen and (max-width: 350px) {
  707. #sec03-moblie #sec03-slider .table .sec03-table-text {
  708. padding: 0px;
  709. }
  710. }
  711. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  712. font-size: 14px;
  713. margin: 0;
  714. }
  715. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  716. margin: 0;
  717. font-size: 12px;
  718. }
  719. @media screen and (min-width: 1025px) {
  720. #sec03-moblie {
  721. display: none;
  722. }
  723. }
  724. #sec04 {
  725. padding-top: 5vw;
  726. padding-bottom: 5vw;
  727. background: #414141;
  728. }
  729. @media screen and (max-width: 767px) {
  730. #sec04 {
  731. display: none;
  732. }
  733. }
  734. #sec04 .sec04-title {
  735. padding-bottom: 1vw;
  736. }
  737. #sec04 .sec04-title h1 {
  738. color: #fff;
  739. font-size: 45px;
  740. font-weight: 900;
  741. padding: 10px 10px;
  742. }
  743. @media screen and (max-width: 767px) {
  744. #sec04 .sec04-title h1 {
  745. font-weight: 900;
  746. font-size: 32px;
  747. }
  748. }
  749. #sec04 .sec04-title hr {
  750. width: 12vw;
  751. height: 2px;
  752. color: #fff !important;
  753. margin: 10px;
  754. opacity: 1 !important;
  755. }
  756. @media screen and (max-width: 767px) {
  757. #sec04 .sec04-title hr {
  758. width: 30vw;
  759. }
  760. }
  761. #sec04 .learn-more {
  762. width: 45%;
  763. }
  764. #sec04 #sec04-container {
  765. background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #414141), color-stop(0%, #eee));
  766. background: linear-gradient(180deg, #414141 15%, #eee 0%);
  767. padding: 20px;
  768. padding-bottom: 50px;
  769. }
  770. #sec04 #sec04-container .card {
  771. border: none;
  772. border-radius: 0%;
  773. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  774. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  775. }
  776. #sec04 #sec04-container .card img {
  777. height: 150px;
  778. -o-object-fit: cover;
  779. object-fit: cover;
  780. }
  781. #sec04 #sec04-container .card .card-title {
  782. font-weight: 900;
  783. }
  784. #sec04-moblie {
  785. padding-top: 5vw;
  786. padding-bottom: 5vw;
  787. background: #414141;
  788. position: relative;
  789. overflow: hidden;
  790. }
  791. #sec04-moblie .arrow-table {
  792. position: fixed;
  793. width: 25px;
  794. right: 15px;
  795. bottom: 240px;
  796. z-index: 6;
  797. }
  798. @media screen and (max-width: 350px) {
  799. #sec04-moblie .arrow-table {
  800. right: 10px;
  801. }
  802. }
  803. @media screen and (min-width: 1025px) {
  804. #sec04-moblie {
  805. display: none;
  806. }
  807. }
  808. #sec04-moblie h1 {
  809. color: #fff;
  810. font-size: 45px;
  811. font-weight: 900;
  812. padding: 5px 10px;
  813. }
  814. @media screen and (max-width: 767px) {
  815. #sec04-moblie h1 {
  816. font-weight: 900;
  817. font-size: 32px;
  818. }
  819. }
  820. #sec04-moblie hr {
  821. width: 30vw;
  822. height: 2px;
  823. color: #fff;
  824. margin: 10px;
  825. opacity: 1 !important;
  826. }
  827. #sec04-moblie #sec04-moblie-container {
  828. padding-top: 10vw;
  829. }
  830. #sec04-moblie #sec04-moblie-container .col {
  831. margin: 10px;
  832. }
  833. #sec04-moblie #sec04-moblie-container .col .card {
  834. border-radius: 0%;
  835. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  836. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  837. }
  838. #sec04-moblie #sec04-moblie-container .col .card img {
  839. height: 150px;
  840. -o-object-fit: cover;
  841. object-fit: cover;
  842. }
  843. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  844. font-weight: 900;
  845. }
  846. #sec04-moblie #sec04-moblie-container .col .card .learn-more {
  847. width: 120px;
  848. }
  849. #sec05 {
  850. width: 85vw;
  851. margin: 0 auto;
  852. padding-top: 5vw;
  853. padding-bottom: 5vw;
  854. }
  855. @media screen and (max-width: 767px) {
  856. #sec05 {
  857. display: none;
  858. }
  859. }
  860. #sec05 h1 {
  861. font-size: 45px;
  862. font-weight: 900;
  863. padding: 15px;
  864. }
  865. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  866. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  867. opacity: 0;
  868. }
  869. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  870. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  871. width: 40px;
  872. height: 40px;
  873. content: none;
  874. }
  875. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  876. background-image: url(./img/arrow-table2.png);
  877. background-repeat: no-repeat;
  878. left: -40px;
  879. }
  880. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  881. background-image: url(./img/arrow-table2.png);
  882. background-repeat: no-repeat;
  883. }
  884. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  885. background-image: url(./img/arrow-table.png);
  886. background-repeat: no-repeat;
  887. right: -50px;
  888. }
  889. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  890. background-image: url(./img/arrow-table.png);
  891. background-repeat: no-repeat;
  892. }
  893. #sec05 #sec05-container .col {
  894. margin: 5px;
  895. }
  896. #sec05 #sec05-container .card {
  897. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  898. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  899. }
  900. #sec05-moblie {
  901. padding-top: 5vw;
  902. padding-bottom: 10vw;
  903. overflow: hidden;
  904. }
  905. @media screen and (min-width: 1025px) {
  906. #sec05-moblie {
  907. display: none;
  908. }
  909. }
  910. #sec05-moblie #sec05-moblie-container {
  911. position: relative;
  912. }
  913. #sec05-moblie #sec05-moblie-container .arrow-table {
  914. position: fixed;
  915. width: 25px;
  916. right: 5px;
  917. bottom: 300px;
  918. z-index: 6;
  919. }
  920. @media screen and (max-width: 350px) {
  921. #sec05-moblie #sec05-moblie-container .arrow-table {
  922. right: 10px;
  923. }
  924. }
  925. #sec05-moblie h1 {
  926. font-size: 45px;
  927. font-weight: 900;
  928. padding: 15px;
  929. }
  930. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  931. padding: 20px;
  932. margin: 30px;
  933. }
  934. @media screen and (max-width: 400px) {
  935. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  936. padding: 5px;
  937. margin: 20px;
  938. }
  939. }
  940. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box .card {
  941. border: none;
  942. }
  943. #sec05-moblie .sec05-button {
  944. text-align: center;
  945. margin-top: -50px;
  946. }
  947. #sec05-moblie .sec05-button .mouse_scroll {
  948. display: inline-block;
  949. margin: 0 auto;
  950. width: 24px;
  951. -webkit-transform: rotate(90deg);
  952. transform: rotate(90deg);
  953. }
  954. #sec05-moblie .sec05-button .testright {
  955. -webkit-transform: rotate(180deg);
  956. transform: rotate(180deg);
  957. }
  958. #sec05-moblie .sec05-button .m_scroll_arrows {
  959. display: block;
  960. width: 5px;
  961. height: 5px;
  962. /* IE 9 */
  963. -webkit-transform: rotate(45deg);
  964. /* Chrome, Safari, Opera */
  965. transform: rotate(45deg);
  966. border-right: 2px solid #000;
  967. border-bottom: 2px solid #000;
  968. margin: 0 0 3px 4px;
  969. width: 16px;
  970. height: 16px;
  971. }
  972. #sec05-moblie .sec05-button .unu {
  973. margin-top: 1px;
  974. }
  975. #sec05-moblie .sec05-button .unu,
  976. #sec05-moblie .sec05-button .doi,
  977. #sec05-moblie .sec05-button .trei {
  978. -webkit-animation: mouse-scroll 1s infinite;
  979. animation: mouse-scroll 1s infinite;
  980. }
  981. #sec05-moblie .sec05-button .unu {
  982. -webkit-animation-delay: 0.1s;
  983. -moz-animation-delay: 0.1s;
  984. -webkit-animation-direction: alternate;
  985. animation-direction: alternate;
  986. -webkit-animation-delay: alternate;
  987. animation-delay: alternate;
  988. }
  989. #sec05-moblie .sec05-button .doi {
  990. -webkit-animation-delay: 0.2s;
  991. -moz-animation-delay: 0.2s;
  992. -webkit-animation-direction: alternate;
  993. animation-delay: 0.2s;
  994. animation-direction: alternate;
  995. margin-top: -6px;
  996. }
  997. #sec05-moblie .sec05-button .trei {
  998. -webkit-animation-delay: 0.3s;
  999. -moz-animation-delay: 0.3s;
  1000. -webkit-animation-direction: alternate;
  1001. animation-delay: 0.3s;
  1002. animation-direction: alternate;
  1003. margin-top: -6px;
  1004. }
  1005. #sec05-moblie .sec05-button .mouse {
  1006. height: 42px;
  1007. width: 24px;
  1008. border-radius: 14px;
  1009. -webkit-transform: none;
  1010. transform: none;
  1011. border: 2px solid #000;
  1012. top: 170px;
  1013. }
  1014. #sec05-moblie .sec05-button .wheel {
  1015. height: 5px;
  1016. width: 2px;
  1017. display: block;
  1018. margin: 5px auto;
  1019. background: #000;
  1020. position: relative;
  1021. height: 4px;
  1022. width: 4px;
  1023. border: 2px solid #000;
  1024. border-radius: 8px;
  1025. }
  1026. #sec05-moblie .sec05-button .wheel {
  1027. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1028. animation: mouse-wheel 0.8s linear infinite;
  1029. }
  1030. @-webkit-keyframes mouse-wheel {
  1031. 0% {
  1032. opacity: 1;
  1033. -webkit-transform: translateY(0);
  1034. transform: translateY(0);
  1035. }
  1036. 100% {
  1037. opacity: 0;
  1038. -webkit-transform: translateY(6px);
  1039. transform: translateY(6px);
  1040. }
  1041. }
  1042. @keyframes mouse-wheel {
  1043. 0% {
  1044. top: 1px;
  1045. }
  1046. 25% {
  1047. top: 5px;
  1048. }
  1049. 50% {
  1050. top: 15px;
  1051. }
  1052. 75% {
  1053. top: 5px;
  1054. }
  1055. 100% {
  1056. top: 1px;
  1057. }
  1058. }
  1059. @-webkit-keyframes mouse-scroll {
  1060. 0% {
  1061. opacity: 0;
  1062. }
  1063. 50% {
  1064. opacity: 0.5;
  1065. }
  1066. 100% {
  1067. opacity: 1;
  1068. }
  1069. }
  1070. @keyframes mouse-scroll {
  1071. 0% {
  1072. opacity: 0;
  1073. }
  1074. 50% {
  1075. opacity: 0.5;
  1076. }
  1077. 100% {
  1078. opacity: 1;
  1079. }
  1080. }
  1081. #sec06 {
  1082. width: 100vw;
  1083. padding-top: 5vw;
  1084. padding-bottom: 10vw;
  1085. background: #525252;
  1086. }
  1087. @media screen and (max-width: 767px) {
  1088. #sec06 {
  1089. background: #313131;
  1090. }
  1091. }
  1092. #sec06 h1 {
  1093. font-size: 45px;
  1094. font-weight: 900;
  1095. padding: 15px;
  1096. color: #fff;
  1097. }
  1098. #sec06 hr {
  1099. width: 12vw;
  1100. height: 2px;
  1101. color: #fff;
  1102. margin: 10px;
  1103. opacity: 1 !important;
  1104. }
  1105. @media screen and (max-width: 767px) {
  1106. #sec06 hr {
  1107. width: 30vw;
  1108. }
  1109. }
  1110. #sec06 #sec06-container {
  1111. width: 80vw;
  1112. }
  1113. #sec06 #sec06-container .card {
  1114. margin: 10px;
  1115. height: 480px;
  1116. border-radius: 0%;
  1117. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1118. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1119. }
  1120. #sec06 #sec06-container .card img {
  1121. padding: 5px;
  1122. height: 150px;
  1123. -o-object-fit: cover;
  1124. object-fit: cover;
  1125. }
  1126. #sec06 #sec06-container .card .card-title {
  1127. font-weight: 900;
  1128. }
  1129. #sec06 #sec06-container .card .learn-more {
  1130. width: 120px;
  1131. }
  1132. #sec06 #sec06-container .learn-more {
  1133. width: 120px;
  1134. }
  1135. #sec07 {
  1136. padding-top: 5vw;
  1137. padding-bottom: 5vw;
  1138. }
  1139. @media screen and (max-width: 767px) {
  1140. #sec07 {
  1141. display: none;
  1142. }
  1143. }
  1144. #sec07 .NFT-Collections-Sales-Volume {
  1145. width: 80vw;
  1146. margin: 0 auto;
  1147. margin-top: -120px;
  1148. margin-bottom: 50px;
  1149. }
  1150. @media screen and (max-width: 767px) {
  1151. #sec07 .NFT-Collections-Sales-Volume {
  1152. display: none;
  1153. }
  1154. }
  1155. #sec07 .NFT-Collections-Sales-Volume h1 {
  1156. padding: 0;
  1157. margin: 0;
  1158. font-weight: normal;
  1159. color: #fff;
  1160. letter-spacing: 3px;
  1161. font-size: 50px;
  1162. }
  1163. #sec07 .table {
  1164. text-align: center;
  1165. }
  1166. #sec07 .table thead tr th {
  1167. border: 0;
  1168. }
  1169. #sec07 .table td {
  1170. display: table-cell;
  1171. vertical-align: middle;
  1172. text-align: left;
  1173. }
  1174. #sec07 .table td img {
  1175. width: 50px;
  1176. }
  1177. #sec07 .table td .data-line {
  1178. width: 100px;
  1179. }
  1180. #sec07 .table th {
  1181. display: table-cell;
  1182. vertical-align: middle;
  1183. text-align: left;
  1184. }
  1185. #sec07 .table img {
  1186. padding: 5px;
  1187. }
  1188. #sec07 .sec07-table-button {
  1189. text-align: right;
  1190. }
  1191. #sec07 .sec07-table-button .data-button {
  1192. text-align: left;
  1193. border-radius: 25px;
  1194. width: 10vw;
  1195. padding: 5px 20px;
  1196. color: #000;
  1197. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1198. background-size: 18px 18px;
  1199. background-color: #fff;
  1200. border: 1px solid #000;
  1201. }
  1202. #sec07-moblir-title {
  1203. background: #414141;
  1204. }
  1205. @media screen and (min-width: 1025px) {
  1206. #sec07-moblir-title {
  1207. display: none;
  1208. }
  1209. }
  1210. #sec07-moblir-title #sec07-container {
  1211. padding: 15px;
  1212. font-weight: 900;
  1213. color: #fff;
  1214. }
  1215. #sec07-moblie {
  1216. padding-top: 5vw;
  1217. padding-bottom: 5vw;
  1218. }
  1219. @media screen and (min-width: 1025px) {
  1220. #sec07-moblie {
  1221. display: none;
  1222. }
  1223. }
  1224. #sec07-moblie .table {
  1225. text-align: center;
  1226. }
  1227. #sec07-moblie .table thead tr th {
  1228. border: 0;
  1229. }
  1230. #sec07-moblie .table td {
  1231. display: table-cell;
  1232. vertical-align: middle;
  1233. text-align-last: left;
  1234. font-size: 14px;
  1235. }
  1236. #sec07-moblie .table td img {
  1237. width: 30px;
  1238. }
  1239. #sec07-moblie .table td .data-line {
  1240. width: 80px;
  1241. }
  1242. #sec07-moblie .table th {
  1243. display: table-cell;
  1244. vertical-align: middle;
  1245. text-align: left;
  1246. font-size: 14px;
  1247. }
  1248. #sec07-moblie .table img {
  1249. padding: 5px;
  1250. width: 50px;
  1251. }
  1252. #sec07-moblie .sec07-table-button {
  1253. text-align: right;
  1254. }
  1255. #sec07-moblie .sec07-table-button .data-button {
  1256. text-align: left;
  1257. border-radius: 25px;
  1258. width: 35vw;
  1259. padding: 5px 20px;
  1260. color: #000;
  1261. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1262. background-size: 18px 18px;
  1263. background-color: #fff;
  1264. border: 1px solid #000;
  1265. }
  1266. #footer {
  1267. width: 100vw;
  1268. text-align: center;
  1269. line-height: 2;
  1270. background: #313131;
  1271. color: #fff;
  1272. padding-bottom: 3vw !important;
  1273. }
  1274. #footer .footer-link {
  1275. padding-top: 3vw;
  1276. }
  1277. #footer .footer-link a {
  1278. text-decoration: none;
  1279. font-size: 20px;
  1280. padding: 10px;
  1281. color: #fff;
  1282. }
  1283. @media screen and (max-width: 767px) {
  1284. #footer .footer-link a {
  1285. font-size: 14px;
  1286. padding: 0 !important;
  1287. }
  1288. }
  1289. @media screen and (max-width: 400px) {
  1290. #footer .footer-link a {
  1291. font-size: 12px;
  1292. }
  1293. }
  1294. #footer .footer-link a span {
  1295. font-size: 28px;
  1296. }
  1297. @media screen and (max-width: 767px) {
  1298. #footer .footer-link a span {
  1299. font-size: 16px;
  1300. }
  1301. }
  1302. @media screen and (max-width: 350px) {
  1303. #footer .footer-link a span {
  1304. font-size: 14px;
  1305. }
  1306. }
  1307. #footer .text {
  1308. padding-top: 3vw;
  1309. }
  1310. #footer .text a {
  1311. text-decoration: none;
  1312. color: #fff;
  1313. }
  1314. #footer .text h2 {
  1315. font-size: 20px;
  1316. margin: 10px;
  1317. letter-spacing: 1px;
  1318. display: inline;
  1319. }
  1320. @media screen and (max-width: 767px) {
  1321. #footer .text h2 {
  1322. display: block;
  1323. font-size: 16px;
  1324. margin: 8px;
  1325. }
  1326. }
  1327. #footer .text p {
  1328. margin: 0 !important;
  1329. }
  1330. /*# sourceMappingURL=style.css.map */