style.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  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. overflow: hidden;
  669. }
  670. #sec04-moblie .arrow-table {
  671. position: fixed;
  672. width: 25px;
  673. right: 15px;
  674. bottom: 240px;
  675. z-index: 6;
  676. }
  677. @media screen and (max-width: 350px) {
  678. #sec04-moblie .arrow-table {
  679. right: 10px;
  680. }
  681. }
  682. @media screen and (min-width: 1025px) {
  683. #sec04-moblie {
  684. display: none;
  685. }
  686. }
  687. #sec04-moblie h1 {
  688. color: #fff;
  689. font-size: 45px;
  690. font-weight: 900;
  691. padding: 5px 10px;
  692. }
  693. @media screen and (max-width: 767px) {
  694. #sec04-moblie h1 {
  695. font-weight: 900;
  696. font-size: 32px;
  697. }
  698. }
  699. #sec04-moblie hr {
  700. width: 30vw;
  701. height: 2px;
  702. color: #fff;
  703. margin: 10px;
  704. opacity: 1 !important;
  705. }
  706. #sec04-moblie #sec04-moblie-container {
  707. padding-top: 10vw;
  708. }
  709. #sec04-moblie #sec04-moblie-container .col {
  710. margin: 10px;
  711. }
  712. #sec04-moblie #sec04-moblie-container .col .card {
  713. border-radius: 0%;
  714. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  715. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  716. }
  717. #sec04-moblie #sec04-moblie-container .col .card img {
  718. height: 150px;
  719. -o-object-fit: cover;
  720. object-fit: cover;
  721. }
  722. #sec05 {
  723. width: 85vw;
  724. margin: 0 auto;
  725. padding-top: 5vw;
  726. padding-bottom: 5vw;
  727. }
  728. @media screen and (max-width: 767px) {
  729. #sec05 {
  730. display: none;
  731. }
  732. }
  733. #sec05 h1 {
  734. font-size: 45px;
  735. font-weight: 900;
  736. padding: 15px;
  737. }
  738. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  739. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  740. opacity: 0;
  741. }
  742. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  743. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  744. width: 40px;
  745. height: 40px;
  746. content: none;
  747. }
  748. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  749. background-image: url(./img/arrow-table2.png);
  750. background-repeat: no-repeat;
  751. left: -40px;
  752. }
  753. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  754. background-image: url(./img/arrow-table2.png);
  755. background-repeat: no-repeat;
  756. }
  757. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  758. background-image: url(./img/arrow-table.png);
  759. background-repeat: no-repeat;
  760. right: -50px;
  761. }
  762. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  763. background-image: url(./img/arrow-table.png);
  764. background-repeat: no-repeat;
  765. }
  766. #sec05 #sec05-container .col {
  767. margin: 5px;
  768. }
  769. #sec05 #sec05-container .card {
  770. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  771. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  772. }
  773. #sec05-moblie {
  774. padding-top: 5vw;
  775. padding-bottom: 5vw;
  776. overflow: hidden;
  777. }
  778. @media screen and (min-width: 1025px) {
  779. #sec05-moblie {
  780. display: none;
  781. }
  782. }
  783. #sec05-moblie #sec05-moblie-container {
  784. position: relative;
  785. }
  786. #sec05-moblie #sec05-moblie-container .arrow-table {
  787. position: fixed;
  788. width: 25px;
  789. right: 5px;
  790. bottom: 300px;
  791. z-index: 6;
  792. }
  793. @media screen and (max-width: 350px) {
  794. #sec05-moblie #sec05-moblie-container .arrow-table {
  795. right: 10px;
  796. }
  797. }
  798. #sec05-moblie h1 {
  799. font-size: 45px;
  800. font-weight: 900;
  801. padding: 15px;
  802. }
  803. #sec05-moblie #sec05-container #sec05-moblie-slider {
  804. width: 100vw;
  805. }
  806. #sec05-moblie #sec05-container #sec05-moblie-slider .sec05-moblie-box {
  807. margin: 30px;
  808. }
  809. #sec05-moblie #sec05-container #sec05-moblie-slider .sec05-moblie-box .card {
  810. border: none;
  811. }
  812. #sec06 {
  813. padding-top: 5vw;
  814. padding-bottom: 5vw;
  815. background: #525252;
  816. }
  817. @media screen and (max-width: 767px) {
  818. #sec06 {
  819. background: #313131;
  820. }
  821. }
  822. #sec06 h1 {
  823. font-size: 45px;
  824. font-weight: 900;
  825. padding: 15px;
  826. color: #fff;
  827. }
  828. #sec06 hr {
  829. width: 12vw;
  830. height: 2px;
  831. color: #fff;
  832. margin: 10px;
  833. opacity: 1 !important;
  834. }
  835. @media screen and (max-width: 767px) {
  836. #sec06 hr {
  837. width: 30vw;
  838. }
  839. }
  840. #sec06 #sec06-container .card {
  841. height: 480px;
  842. margin: 10px;
  843. border-radius: 0%;
  844. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  845. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  846. }
  847. #sec06 #sec06-container .card img {
  848. padding: 5px;
  849. height: 150px;
  850. -o-object-fit: cover;
  851. object-fit: cover;
  852. }
  853. #sec06 #sec06-container .card .card-title {
  854. font-weight: 900;
  855. }
  856. #sec06 #sec06-container .card .learn-more {
  857. width: 120px;
  858. }
  859. #sec07 {
  860. padding-top: 5vw;
  861. padding-bottom: 5vw;
  862. }
  863. @media screen and (max-width: 767px) {
  864. #sec07 {
  865. display: none;
  866. }
  867. }
  868. #sec07 .NFT-Collections-Sales-Volume {
  869. width: 80vw;
  870. margin: 0 auto;
  871. margin-top: -120px;
  872. margin-bottom: 50px;
  873. }
  874. @media screen and (max-width: 767px) {
  875. #sec07 .NFT-Collections-Sales-Volume {
  876. display: none;
  877. }
  878. }
  879. #sec07 .NFT-Collections-Sales-Volume h1 {
  880. padding: 0;
  881. margin: 0;
  882. font-weight: normal;
  883. color: #fff;
  884. letter-spacing: 3px;
  885. font-size: 50px;
  886. }
  887. #sec07 .table {
  888. text-align: center;
  889. }
  890. #sec07 .table thead tr th {
  891. border: 0;
  892. }
  893. #sec07 .table td {
  894. display: table-cell;
  895. vertical-align: middle;
  896. text-align: left;
  897. }
  898. #sec07 .table td img {
  899. width: 50px;
  900. }
  901. #sec07 .table td .data-line {
  902. width: 100px;
  903. }
  904. #sec07 .table th {
  905. display: table-cell;
  906. vertical-align: middle;
  907. text-align: left;
  908. }
  909. #sec07 .table img {
  910. padding: 5px;
  911. }
  912. #sec07 .sec07-table-button {
  913. text-align: right;
  914. }
  915. #sec07 .sec07-table-button .data-button {
  916. text-align: left;
  917. border-radius: 25px;
  918. width: 10vw;
  919. padding: 5px 20px;
  920. color: #000;
  921. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  922. background-size: 18px 18px;
  923. background-color: #fff;
  924. border: 1px solid #000;
  925. }
  926. #sec07-moblir-title {
  927. background: #414141;
  928. }
  929. @media screen and (min-width: 1025px) {
  930. #sec07-moblir-title {
  931. display: none;
  932. }
  933. }
  934. #sec07-moblir-title #sec07-container {
  935. padding: 15px;
  936. font-weight: 900;
  937. color: #fff;
  938. }
  939. #sec07-moblie {
  940. padding-top: 5vw;
  941. padding-bottom: 5vw;
  942. }
  943. @media screen and (min-width: 1025px) {
  944. #sec07-moblie {
  945. display: none;
  946. }
  947. }
  948. #sec07-moblie .table {
  949. text-align: center;
  950. }
  951. #sec07-moblie .table thead tr th {
  952. border: 0;
  953. }
  954. #sec07-moblie .table td {
  955. display: table-cell;
  956. vertical-align: middle;
  957. text-align-last: left;
  958. font-size: 14px;
  959. }
  960. #sec07-moblie .table td img {
  961. width: 30px;
  962. }
  963. #sec07-moblie .table td .data-line {
  964. width: 80px;
  965. }
  966. #sec07-moblie .table th {
  967. display: table-cell;
  968. vertical-align: middle;
  969. text-align: left;
  970. font-size: 14px;
  971. }
  972. #sec07-moblie .table img {
  973. padding: 5px;
  974. width: 50px;
  975. }
  976. #sec07-moblie .sec07-table-button {
  977. text-align: right;
  978. }
  979. #sec07-moblie .sec07-table-button .data-button {
  980. text-align: left;
  981. border-radius: 25px;
  982. width: 35vw;
  983. padding: 5px 20px;
  984. color: #000;
  985. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  986. background-size: 18px 18px;
  987. background-color: #fff;
  988. border: 1px solid #000;
  989. }
  990. #footer {
  991. width: 100vw;
  992. text-align: center;
  993. line-height: 2;
  994. background: #313131;
  995. color: #fff;
  996. padding-bottom: 3vw !important;
  997. }
  998. #footer .footer-link {
  999. padding-top: 3vw;
  1000. }
  1001. #footer .footer-link a {
  1002. text-decoration: none;
  1003. font-size: 20px;
  1004. padding: 10px;
  1005. color: #fff;
  1006. }
  1007. @media screen and (max-width: 767px) {
  1008. #footer .footer-link a {
  1009. font-size: 14px;
  1010. padding: 0 !important;
  1011. }
  1012. }
  1013. @media screen and (max-width: 400px) {
  1014. #footer .footer-link a {
  1015. font-size: 12px;
  1016. }
  1017. }
  1018. #footer .footer-link a span {
  1019. font-size: 28px;
  1020. }
  1021. @media screen and (max-width: 767px) {
  1022. #footer .footer-link a span {
  1023. font-size: 16px;
  1024. }
  1025. }
  1026. @media screen and (max-width: 350px) {
  1027. #footer .footer-link a span {
  1028. font-size: 14px;
  1029. }
  1030. }
  1031. #footer .text {
  1032. padding-top: 3vw;
  1033. }
  1034. #footer .text a {
  1035. color: #fff;
  1036. }
  1037. #footer .text h2 {
  1038. font-size: 20px;
  1039. margin: 10px;
  1040. letter-spacing: 1px;
  1041. display: inline;
  1042. }
  1043. @media screen and (max-width: 767px) {
  1044. #footer .text h2 {
  1045. display: block;
  1046. font-size: 16px;
  1047. margin: 8px;
  1048. }
  1049. }
  1050. #footer .text p {
  1051. margin: 0 !important;
  1052. }
  1053. /*# sourceMappingURL=style.css.map */