style.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  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: 100vw;
  15. }
  16. }
  17. body .learn-more {
  18. color: #fff;
  19. width: 30%;
  20. height: 50px;
  21. margin: 10px 0px;
  22. font-size: 16px;
  23. border-radius: 0%;
  24. border: none;
  25. font-weight: 900;
  26. background: #93000a;
  27. vertical-align: top;
  28. -webkit-transition: 0.3s;
  29. transition: 0.3s;
  30. }
  31. body .learn-more:hover {
  32. color: #93000a;
  33. background: #fff;
  34. border: 1px solid #93000a;
  35. }
  36. #Navigation {
  37. width: 100vw;
  38. background-color: #000;
  39. color: #fff;
  40. position: fixed;
  41. z-index: 20;
  42. }
  43. #Navigation #logo {
  44. padding-top: 1.3vw;
  45. }
  46. @media screen and (max-width: 767px) {
  47. #Navigation #logo {
  48. padding-top: 0;
  49. }
  50. }
  51. #Navigation #logo img {
  52. width: 180px;
  53. }
  54. @media screen and (max-width: 767px) {
  55. #Navigation #logo img {
  56. width: 150px;
  57. }
  58. }
  59. #Navigation #link {
  60. padding: 4vw 1vw 2vw 1vw;
  61. }
  62. @media screen and (max-width: 767px) {
  63. #Navigation #link {
  64. display: none;
  65. }
  66. }
  67. #Navigation a {
  68. text-decoration: none;
  69. color: #fff;
  70. letter-spacing: 1px;
  71. font-size: 0.9rem;
  72. font-weight: 600;
  73. cursor: pointer;
  74. padding: 15px;
  75. position: relative;
  76. }
  77. #Navigation a :hover {
  78. opacity: 0.8;
  79. }
  80. #Navigation a:after {
  81. content: "";
  82. display: block;
  83. width: 80%;
  84. height: 3px;
  85. background-color: #fff;
  86. position: absolute;
  87. left: 12%;
  88. bottom: 0;
  89. -webkit-transition: all 0.3s;
  90. transition: all 0.3s;
  91. opacity: 0;
  92. }
  93. #Navigation a:hover:after {
  94. width: 80%;
  95. opacity: 1;
  96. }
  97. @media screen and (max-width: 1024px) {
  98. #Navigation a {
  99. padding: 5px;
  100. padding-top: 2vw;
  101. }
  102. }
  103. #Navigation #menu-btn1 {
  104. position: absolute;
  105. right: 1vw;
  106. top: 5vw;
  107. width: 15vw;
  108. z-index: 6;
  109. }
  110. @media screen and (min-width: 1025px) {
  111. #Navigation #menu-btn1 {
  112. display: none;
  113. }
  114. }
  115. @media screen and (min-width: 768px) {
  116. #Navigation #menu-btn1 {
  117. display: none;
  118. }
  119. }
  120. #menu-box {
  121. width: 40vw;
  122. right: 0px;
  123. position: fixed;
  124. z-index: 20;
  125. overflow: hidden;
  126. }
  127. @media screen and (min-width: 1025px) {
  128. #menu-box {
  129. display: none;
  130. }
  131. }
  132. #menu-box hr {
  133. margin: 5px auto !important;
  134. width: 25vw;
  135. background: #fff;
  136. opacity: 1 !important;
  137. }
  138. #menu-box #menu-box2 {
  139. padding-bottom: 5vw;
  140. position: relative;
  141. width: 40vw;
  142. background-color: #313131;
  143. z-index: 7;
  144. text-align: center;
  145. }
  146. #menu-box #menu-box2 .close {
  147. padding: 30px 15px 15px 15px;
  148. }
  149. #menu-box #menu-box2 a {
  150. display: inline-block;
  151. text-decoration: none;
  152. color: #fff;
  153. font-size: 14px;
  154. font-weight: 900;
  155. text-align: center;
  156. padding: 0 !important;
  157. }
  158. #banner {
  159. width: 100vw;
  160. display: inline-block;
  161. background: linear-gradient(115deg, #313131 38%, transparent 30%, #707070 27%);
  162. background-blend-mode: overlay;
  163. }
  164. @media screen and (max-width: 767px) {
  165. #banner {
  166. background: linear-gradient(115deg, #414141 100%, transparent 30%, #707070 0%);
  167. }
  168. }
  169. #banner #banner-container {
  170. width: 80vw;
  171. margin: 50px auto;
  172. padding-bottom: 5vw;
  173. }
  174. @media screen and (max-width: 767px) {
  175. #banner #banner-container {
  176. width: 100vw;
  177. margin: 0;
  178. padding-bottom: 15vw;
  179. }
  180. }
  181. #banner #banner-container .youtube {
  182. width: 80vw;
  183. padding-top: 10vw;
  184. margin: 0 auto;
  185. color: #fff;
  186. }
  187. @media screen and (max-width: 767px) {
  188. #banner #banner-container .youtube {
  189. padding-top: 30vw;
  190. }
  191. }
  192. #banner #banner-container .youtube hr {
  193. width: 12vw;
  194. height: 2px;
  195. color: #fff;
  196. margin: 20px 0px;
  197. opacity: 1 !important;
  198. }
  199. @media screen and (max-width: 767px) {
  200. #banner #banner-container .youtube hr {
  201. width: 30vw;
  202. }
  203. }
  204. #banner #banner-container .youtube p {
  205. font-size: 18px;
  206. }
  207. #banner #banner-container .youtube h1 {
  208. font-size: 40px;
  209. padding-top: 0;
  210. }
  211. @media screen and (max-width: 767px) {
  212. #banner #banner-container .youtube h1 {
  213. font-size: 25px;
  214. padding: 15px 0px;
  215. }
  216. }
  217. @media screen and (max-width: 767px) {
  218. #banner #banner-container .youtube .learn-more {
  219. width: 100%;
  220. margin: 10px 0px;
  221. }
  222. }
  223. #banner #banner-container h1 {
  224. padding-top: 3vw;
  225. text-align: center;
  226. color: #fff;
  227. }
  228. @media screen and (max-width: 767px) {
  229. #banner #banner-container h1 {
  230. font-size: 20px;
  231. padding: 15px;
  232. }
  233. }
  234. #banner #banner-container #email {
  235. width: 75%;
  236. font-size: 16px;
  237. margin: 10px 0px;
  238. padding: 10px 15px;
  239. border: none;
  240. height: 50px;
  241. }
  242. @media screen and (max-width: 767px) {
  243. #banner #banner-container #email {
  244. display: none;
  245. }
  246. }
  247. #banner #banner-container #email-moblie {
  248. margin: 10px auto;
  249. width: 75%;
  250. padding: 10px 15px;
  251. border: none;
  252. height: 50px;
  253. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  254. background-size: 20px 15px;
  255. background-color: #fff;
  256. text-align: center;
  257. color: #313131;
  258. font-weight: 900;
  259. }
  260. @media screen and (min-width: 1025px) {
  261. #banner #banner-container #email-moblie {
  262. display: none;
  263. }
  264. }
  265. #banner #banner-container .btn {
  266. color: #fff;
  267. width: 25%;
  268. height: 50px;
  269. margin: 10px 0px;
  270. font-size: 16px;
  271. border-radius: 0%;
  272. border: none;
  273. font-weight: 900;
  274. background: #93000a;
  275. vertical-align: top;
  276. -webkit-transition: 0.3s;
  277. transition: 0.3s;
  278. }
  279. @media screen and (max-width: 767px) {
  280. #banner #banner-container .btn {
  281. display: none;
  282. }
  283. }
  284. #banner #banner-container .btn:hover {
  285. font-size: 17px;
  286. }
  287. #banner #banner-container #email-arrow {
  288. width: 15%;
  289. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  290. background-size: 10px 15px;
  291. background-color: #93000a;
  292. height: 50px;
  293. margin: 10px auto;
  294. font-size: 16px;
  295. border-radius: 0%;
  296. border: none;
  297. font-weight: 900;
  298. vertical-align: top;
  299. }
  300. @media screen and (min-width: 1025px) {
  301. #banner #banner-container #email-arrow {
  302. display: none;
  303. }
  304. }
  305. #sec01 {
  306. padding-top: 5vw;
  307. padding-bottom: 5vw;
  308. }
  309. #sec01 .NEWS {
  310. width: 80vw;
  311. margin: 0 auto;
  312. margin-top: -130px;
  313. margin-bottom: 100px;
  314. }
  315. @media screen and (max-width: 767px) {
  316. #sec01 .NEWS {
  317. margin-top: -70px;
  318. width: 90vw;
  319. }
  320. }
  321. #sec01 .NEWS h1 {
  322. padding: 0;
  323. margin: 0;
  324. font-weight: 900;
  325. color: #fff;
  326. letter-spacing: 3px;
  327. font-size: 60px;
  328. }
  329. @media screen and (max-width: 767px) {
  330. #sec01 .NEWS h1 {
  331. font-size: 50px;
  332. }
  333. }
  334. #sec01 #sec01-container {
  335. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  336. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  337. margin: 0 auto !important;
  338. }
  339. @media screen and (max-width: 767px) {
  340. #sec01 #sec01-container {
  341. width: 90vw;
  342. margin: 0 auto;
  343. }
  344. }
  345. #sec01 #sec01-container #sec01-container-card .card {
  346. padding: 30px;
  347. border: none !important;
  348. }
  349. @media screen and (max-width: 767px) {
  350. #sec01 #sec01-container #sec01-container-card .card {
  351. padding: 15px;
  352. }
  353. }
  354. #sec01 #sec01-container #sec01-container-card .card h1 {
  355. padding: 15px;
  356. font-size: 40px;
  357. font-weight: 900;
  358. color: #9b9b9b;
  359. }
  360. #sec01 #sec01-container #sec01-container-card .card p {
  361. padding: 5px;
  362. font-size: 18px;
  363. margin-bottom: 0 !important;
  364. }
  365. @media screen and (max-width: 767px) {
  366. #sec01 #sec01-container #sec01-container-card .card p {
  367. padding: 0px;
  368. font-size: 16px;
  369. }
  370. }
  371. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  372. padding: 15px 0px;
  373. font-weight: 900;
  374. font-size: 22px;
  375. }
  376. @media screen and (max-width: 767px) {
  377. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  378. font-size: 18px;
  379. }
  380. }
  381. #sec01 #sec01-container #sec01-container-card .card a {
  382. text-decoration: none;
  383. color: #000;
  384. -webkit-transition: 0.3s;
  385. transition: 0.3s;
  386. cursor: pointer;
  387. }
  388. #sec01 #sec01-container #sec01-container-card .card a:hover {
  389. color: #2828ff;
  390. }
  391. #sec01 #sec01-container #sec01-container-card .card img {
  392. text-align: center;
  393. width: 38vw;
  394. height: 240px;
  395. -o-object-fit: cover;
  396. object-fit: cover;
  397. }
  398. @media screen and (max-width: 767px) {
  399. #sec01 #sec01-container #sec01-container-card .card img {
  400. width: 85vw;
  401. height: 200px;
  402. margin: 0 auto;
  403. }
  404. }
  405. #sec02 {
  406. background: #414141;
  407. padding-top: 3vw;
  408. }
  409. @media screen and (max-width: 767px) {
  410. #sec02 {
  411. display: none;
  412. }
  413. }
  414. #sec02 #sec02-container {
  415. width: 90vw;
  416. padding: 15px;
  417. font-weight: 900;
  418. color: #fff;
  419. position: relative;
  420. }
  421. #sec02 #sec02-container #sec02-top-box {
  422. position: relative;
  423. }
  424. #sec02 #sec02-container #sec02-top-box #sec02-content {
  425. position: absolute;
  426. top: 10px;
  427. left: 300px;
  428. }
  429. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  430. color: #000;
  431. width: 13vw;
  432. }
  433. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  434. border-radius: 50%;
  435. width: 150px;
  436. height: 200px;
  437. -o-object-fit: cover;
  438. object-fit: cover;
  439. }
  440. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  441. font-size: 30px;
  442. }
  443. #sec02-moblie {
  444. background: #414141;
  445. padding-top: 3vw;
  446. padding-bottom: 20vw;
  447. }
  448. @media screen and (min-width: 1025px) {
  449. #sec02-moblie {
  450. display: none;
  451. }
  452. }
  453. #sec02-moblie #sec02-container {
  454. padding: 15px;
  455. font-weight: 900;
  456. color: #fff;
  457. text-align: right;
  458. }
  459. #sec02-moblie #sec02-container .sec02-top1-box img {
  460. width: 80px;
  461. }
  462. #sec02-moblie #sec02-container .sec02-top1-box span {
  463. font-size: 30px;
  464. }
  465. #sec02-moblie #sec02-container .sec02-top1-box .sec02-top-text {
  466. text-align: center;
  467. }
  468. #sec02-moblie #sec02-container #sec02-content {
  469. position: relative;
  470. }
  471. #sec02-moblie #sec02-container #sec02-top-box {
  472. position: absolute;
  473. top: 1px;
  474. }
  475. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  476. color: #000;
  477. }
  478. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  479. width: 80px;
  480. height: 120px;
  481. border-radius: 50%;
  482. }
  483. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  484. font-size: 12px;
  485. }
  486. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  487. font-size: 30px;
  488. }
  489. #sec03 {
  490. padding-top: 15vw;
  491. padding-bottom: 5vw;
  492. }
  493. @media screen and (max-width: 767px) {
  494. #sec03 {
  495. display: none;
  496. }
  497. }
  498. #sec03 #sec03-table .sec03-table-title {
  499. font-family: 微軟正黑體;
  500. font-weight: 900;
  501. padding: 15px;
  502. font-size: 35px;
  503. }
  504. #sec03 #sec03-table .table th {
  505. font-size: 40px;
  506. display: table-cell;
  507. vertical-align: middle;
  508. }
  509. #sec03 #sec03-table .table td {
  510. padding: 15px;
  511. }
  512. #sec03 #sec03-table .table img {
  513. width: 50px;
  514. }
  515. #sec03 #sec03-table .table .sec03-table-text {
  516. padding: 10px;
  517. display: table-cell;
  518. vertical-align: middle;
  519. }
  520. #sec03 #sec03-table .table .sec03-table-text h1 {
  521. font-size: 20px;
  522. margin: 0;
  523. }
  524. #sec03 #sec03-table .table .sec03-table-text p {
  525. margin: 0;
  526. }
  527. #sec03-moblie {
  528. padding-top: 40vw;
  529. position: relative;
  530. }
  531. #sec03-moblie .arrow-table {
  532. position: fixed;
  533. width: 25px;
  534. right: 15px;
  535. bottom: 250px;
  536. z-index: 6;
  537. }
  538. @media screen and (max-width: 350px) {
  539. #sec03-moblie .arrow-table {
  540. right: 10px;
  541. bottom: 200px;
  542. }
  543. }
  544. #sec03-moblie .sec03-table-title {
  545. font-family: 微軟正黑體;
  546. font-weight: 900;
  547. font-size: 15px;
  548. padding: 0 !important;
  549. margin-bottom: 20px;
  550. }
  551. #sec03-moblie #sec03-slider .slick-slide img {
  552. display: inline;
  553. }
  554. #sec03-moblie #sec03-slider #sec03-slider1,
  555. #sec03-moblie #sec03-slider #sec03-slider2 {
  556. margin: 0 5px;
  557. }
  558. @media screen and (max-width: 350px) {
  559. #sec03-moblie #sec03-slider #sec03-slider1,
  560. #sec03-moblie #sec03-slider #sec03-slider2 {
  561. margin: 0 5px;
  562. }
  563. }
  564. #sec03-moblie #sec03-slider .table th {
  565. font-size: 40px;
  566. display: table-cell;
  567. vertical-align: middle;
  568. padding: 15px;
  569. }
  570. @media screen and (max-width: 350px) {
  571. #sec03-moblie #sec03-slider .table th {
  572. font-size: 30px;
  573. }
  574. }
  575. #sec03-moblie #sec03-slider .table td {
  576. display: table-cell;
  577. vertical-align: middle;
  578. padding: 15px;
  579. padding: 10px;
  580. }
  581. @media screen and (max-width: 350px) {
  582. #sec03-moblie #sec03-slider .table td {
  583. padding: 0px;
  584. }
  585. }
  586. #sec03-moblie #sec03-slider .table img {
  587. width: 50px;
  588. }
  589. #sec03-moblie #sec03-slider .table .sec03-table-text {
  590. padding: 0px 0px 0px 3px;
  591. display: table-cell;
  592. vertical-align: middle;
  593. }
  594. @media screen and (max-width: 350px) {
  595. #sec03-moblie #sec03-slider .table .sec03-table-text {
  596. padding: 0px;
  597. }
  598. }
  599. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  600. font-size: 14px;
  601. margin: 0;
  602. }
  603. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  604. margin: 0;
  605. font-size: 12px;
  606. }
  607. @media screen and (min-width: 1025px) {
  608. #sec03-moblie {
  609. display: none;
  610. }
  611. }
  612. #sec04 {
  613. padding-top: 5vw;
  614. padding-bottom: 5vw;
  615. background: #414141;
  616. }
  617. @media screen and (max-width: 767px) {
  618. #sec04 {
  619. display: none;
  620. }
  621. }
  622. #sec04 h1 {
  623. color: #fff;
  624. font-size: 45px;
  625. font-weight: 900;
  626. padding: 5px 10px;
  627. }
  628. @media screen and (max-width: 767px) {
  629. #sec04 h1 {
  630. font-weight: 900;
  631. font-size: 32px;
  632. }
  633. }
  634. #sec04 hr {
  635. width: 12vw;
  636. height: 2px;
  637. color: #fff;
  638. margin: 10px;
  639. opacity: 1 !important;
  640. }
  641. @media screen and (max-width: 767px) {
  642. #sec04 hr {
  643. width: 30vw;
  644. }
  645. }
  646. #sec04 .learn-more {
  647. width: 45%;
  648. }
  649. #sec04 #sec04-container .card {
  650. border-radius: 0%;
  651. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  652. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  653. }
  654. #sec04 #sec04-container .card img {
  655. padding: 5px;
  656. height: 150px;
  657. -o-object-fit: cover;
  658. object-fit: cover;
  659. }
  660. #sec04 #sec04-container .card .card-title {
  661. font-weight: 900;
  662. }
  663. #sec04-moblie {
  664. padding-top: 5vw;
  665. padding-bottom: 5vw;
  666. background: #414141;
  667. position: relative;
  668. }
  669. #sec04-moblie .arrow-table {
  670. position: fixed;
  671. width: 25px;
  672. right: 15px;
  673. bottom: 240px;
  674. z-index: 6;
  675. }
  676. @media screen and (max-width: 350px) {
  677. #sec04-moblie .arrow-table {
  678. right: 10px;
  679. }
  680. }
  681. @media screen and (min-width: 1025px) {
  682. #sec04-moblie {
  683. display: none;
  684. }
  685. }
  686. #sec04-moblie h1 {
  687. color: #fff;
  688. font-size: 45px;
  689. font-weight: 900;
  690. padding: 5px 10px;
  691. }
  692. @media screen and (max-width: 767px) {
  693. #sec04-moblie h1 {
  694. font-weight: 900;
  695. font-size: 32px;
  696. }
  697. }
  698. #sec04-moblie hr {
  699. width: 30vw;
  700. height: 2px;
  701. color: #fff;
  702. margin: 10px;
  703. opacity: 1 !important;
  704. }
  705. #sec04-moblie #sec04-moblie-container {
  706. padding-top: 10vw;
  707. }
  708. #sec04-moblie #sec04-moblie-container .col {
  709. margin: 10px;
  710. }
  711. #sec04-moblie #sec04-moblie-container .col .card {
  712. border-radius: 0%;
  713. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  714. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  715. }
  716. #sec04-moblie #sec04-moblie-container .col .card img {
  717. height: 150px;
  718. -o-object-fit: cover;
  719. object-fit: cover;
  720. }
  721. #sec05 {
  722. width: 85vw;
  723. margin: 0 auto;
  724. padding-top: 5vw;
  725. padding-bottom: 5vw;
  726. }
  727. @media screen and (max-width: 767px) {
  728. #sec05 {
  729. display: none;
  730. }
  731. }
  732. #sec05 h1 {
  733. font-size: 45px;
  734. font-weight: 900;
  735. padding: 15px;
  736. }
  737. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  738. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  739. opacity: 0;
  740. }
  741. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  742. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  743. width: 40px;
  744. height: 40px;
  745. content: none;
  746. }
  747. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  748. background-image: url(./img/arrow-table2.png);
  749. background-repeat: no-repeat;
  750. left: -40px;
  751. }
  752. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  753. background-image: url(./img/arrow-table2.png);
  754. background-repeat: no-repeat;
  755. }
  756. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  757. background-image: url(./img/arrow-table.png);
  758. background-repeat: no-repeat;
  759. right: -50px;
  760. }
  761. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  762. background-image: url(./img/arrow-table.png);
  763. background-repeat: no-repeat;
  764. }
  765. #sec05 #sec05-container .col {
  766. margin: 5px;
  767. }
  768. #sec05 #sec05-container .card {
  769. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  770. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  771. }
  772. #sec05-moblie {
  773. padding-top: 5vw;
  774. padding-bottom: 5vw;
  775. overflow: hidden;
  776. }
  777. @media screen and (min-width: 1025px) {
  778. #sec05-moblie {
  779. display: none;
  780. }
  781. }
  782. #sec05-moblie #sec05-moblie-container {
  783. position: relative;
  784. }
  785. #sec05-moblie #sec05-moblie-container .arrow-table {
  786. position: fixed;
  787. width: 25px;
  788. right: 5px;
  789. bottom: 300px;
  790. z-index: 6;
  791. }
  792. @media screen and (max-width: 350px) {
  793. #sec05-moblie #sec05-moblie-container .arrow-table {
  794. right: 10px;
  795. }
  796. }
  797. #sec05-moblie h1 {
  798. font-size: 45px;
  799. font-weight: 900;
  800. padding: 15px;
  801. }
  802. #sec05-moblie #sec05-container #sec05-moblie-slider {
  803. width: 100vw;
  804. }
  805. #sec05-moblie #sec05-container #sec05-moblie-slider .sec05-moblie-box {
  806. margin: 30px;
  807. }
  808. #sec05-moblie #sec05-container #sec05-moblie-slider .sec05-moblie-box .card {
  809. border: none;
  810. }
  811. #sec06 {
  812. padding-top: 5vw;
  813. padding-bottom: 5vw;
  814. background: #525252;
  815. }
  816. @media screen and (max-width: 767px) {
  817. #sec06 {
  818. background: #313131;
  819. }
  820. }
  821. #sec06 h1 {
  822. font-size: 45px;
  823. font-weight: 900;
  824. padding: 15px;
  825. color: #fff;
  826. }
  827. #sec06 hr {
  828. width: 12vw;
  829. height: 2px;
  830. color: #fff;
  831. margin: 10px;
  832. opacity: 1 !important;
  833. }
  834. @media screen and (max-width: 767px) {
  835. #sec06 hr {
  836. width: 30vw;
  837. }
  838. }
  839. #sec06 #sec06-container .card {
  840. height: 480px;
  841. margin: 10px;
  842. border-radius: 0%;
  843. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  844. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  845. }
  846. #sec06 #sec06-container .card img {
  847. padding: 5px;
  848. height: 150px;
  849. -o-object-fit: cover;
  850. object-fit: cover;
  851. }
  852. #sec06 #sec06-container .card .card-title {
  853. font-weight: 900;
  854. }
  855. #sec06 #sec06-container .card .learn-more {
  856. width: 120px;
  857. }
  858. #sec07 {
  859. padding-top: 5vw;
  860. padding-bottom: 5vw;
  861. }
  862. @media screen and (max-width: 767px) {
  863. #sec07 {
  864. display: none;
  865. }
  866. }
  867. #sec07 .NFT-Collections-Sales-Volume {
  868. width: 80vw;
  869. margin: 0 auto;
  870. margin-top: -120px;
  871. margin-bottom: 50px;
  872. }
  873. @media screen and (max-width: 767px) {
  874. #sec07 .NFT-Collections-Sales-Volume {
  875. display: none;
  876. }
  877. }
  878. #sec07 .NFT-Collections-Sales-Volume h1 {
  879. padding: 0;
  880. margin: 0;
  881. font-weight: normal;
  882. color: #fff;
  883. letter-spacing: 3px;
  884. font-size: 50px;
  885. }
  886. #sec07 .table {
  887. text-align: center;
  888. }
  889. #sec07 .table thead tr th {
  890. border: 0;
  891. }
  892. #sec07 .table td {
  893. display: table-cell;
  894. vertical-align: middle;
  895. text-align: left;
  896. }
  897. #sec07 .table td img {
  898. width: 50px;
  899. }
  900. #sec07 .table td .data-line {
  901. width: 100px;
  902. }
  903. #sec07 .table th {
  904. display: table-cell;
  905. vertical-align: middle;
  906. text-align: left;
  907. }
  908. #sec07 .table img {
  909. padding: 5px;
  910. }
  911. #sec07 .sec07-table-button {
  912. text-align: right;
  913. }
  914. #sec07 .sec07-table-button .data-button {
  915. text-align: left;
  916. border-radius: 25px;
  917. width: 10vw;
  918. padding: 5px 20px;
  919. color: #000;
  920. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  921. background-size: 18px 18px;
  922. background-color: #fff;
  923. border: 1px solid #000;
  924. }
  925. #sec07-moblir-title {
  926. background: #414141;
  927. }
  928. @media screen and (min-width: 1025px) {
  929. #sec07-moblir-title {
  930. display: none;
  931. }
  932. }
  933. #sec07-moblir-title #sec07-container {
  934. padding: 15px;
  935. font-weight: 900;
  936. color: #fff;
  937. }
  938. #sec07-moblie {
  939. padding-top: 5vw;
  940. padding-bottom: 5vw;
  941. }
  942. @media screen and (min-width: 1025px) {
  943. #sec07-moblie {
  944. display: none;
  945. }
  946. }
  947. #sec07-moblie .table {
  948. text-align: center;
  949. }
  950. #sec07-moblie .table thead tr th {
  951. border: 0;
  952. }
  953. #sec07-moblie .table td {
  954. display: table-cell;
  955. vertical-align: middle;
  956. text-align-last: left;
  957. font-size: 14px;
  958. }
  959. #sec07-moblie .table td img {
  960. width: 30px;
  961. }
  962. #sec07-moblie .table td .data-line {
  963. width: 80px;
  964. }
  965. #sec07-moblie .table th {
  966. display: table-cell;
  967. vertical-align: middle;
  968. text-align: left;
  969. font-size: 14px;
  970. }
  971. #sec07-moblie .table img {
  972. padding: 5px;
  973. width: 50px;
  974. }
  975. #sec07-moblie .sec07-table-button {
  976. text-align: right;
  977. }
  978. #sec07-moblie .sec07-table-button .data-button {
  979. text-align: left;
  980. border-radius: 25px;
  981. width: 35vw;
  982. padding: 5px 20px;
  983. color: #000;
  984. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  985. background-size: 18px 18px;
  986. background-color: #fff;
  987. border: 1px solid #000;
  988. }
  989. #footer {
  990. width: 100vw;
  991. text-align: center;
  992. line-height: 2;
  993. background: #313131;
  994. color: #fff;
  995. padding-bottom: 3vw !important;
  996. }
  997. #footer .footer-link {
  998. padding-top: 3vw;
  999. }
  1000. #footer .footer-link a {
  1001. text-decoration: none;
  1002. font-size: 20px;
  1003. padding: 10px;
  1004. color: #fff;
  1005. }
  1006. @media screen and (max-width: 767px) {
  1007. #footer .footer-link a {
  1008. font-size: 14px;
  1009. padding: 0 !important;
  1010. }
  1011. }
  1012. @media screen and (max-width: 400px) {
  1013. #footer .footer-link a {
  1014. font-size: 12px;
  1015. }
  1016. }
  1017. #footer .footer-link a span {
  1018. font-size: 28px;
  1019. }
  1020. @media screen and (max-width: 767px) {
  1021. #footer .footer-link a span {
  1022. font-size: 16px;
  1023. }
  1024. }
  1025. @media screen and (max-width: 350px) {
  1026. #footer .footer-link a span {
  1027. font-size: 14px;
  1028. }
  1029. }
  1030. #footer .text {
  1031. padding-top: 3vw;
  1032. }
  1033. #footer .text h2 {
  1034. font-size: 20px;
  1035. margin: 10px;
  1036. letter-spacing: 1px;
  1037. display: inline;
  1038. }
  1039. @media screen and (max-width: 767px) {
  1040. #footer .text h2 {
  1041. display: block;
  1042. font-size: 16px;
  1043. margin: 8px;
  1044. }
  1045. }
  1046. #footer .text p {
  1047. margin: 0 !important;
  1048. }
  1049. /*# sourceMappingURL=style.css.map */