style.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292
  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. width: 100vw;
  19. background: #fff;
  20. }
  21. body .learn-more {
  22. color: #fff;
  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 #socail-link {
  112. padding: 4vw 1vw 2vw 1vw;
  113. }
  114. @media screen and (max-width: 767px) {
  115. #Navigation #socail-link {
  116. display: none;
  117. }
  118. }
  119. #Navigation #socail-link img {
  120. width: 30px;
  121. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  122. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  123. -webkit-transition: 0.3s;
  124. transition: 0.3s;
  125. }
  126. #Navigation #socail-link img:hover {
  127. -webkit-filter: invert(14%) sepia(5%) saturate(8%) hue-rotate(320deg) brightness(95%) contrast(84%);
  128. filter: invert(14%) sepia(5%) saturate(8%) hue-rotate(320deg) brightness(95%) contrast(84%);
  129. }
  130. #Navigation #menu-btn1 {
  131. position: absolute;
  132. right: 2vw;
  133. top: 8vw;
  134. width: 15vw;
  135. z-index: 6;
  136. }
  137. @media screen and (min-width: 1025px) {
  138. #Navigation #menu-btn1 {
  139. display: none;
  140. }
  141. }
  142. @media screen and (min-width: 768px) {
  143. #Navigation #menu-btn1 {
  144. display: none;
  145. }
  146. }
  147. #menu-box {
  148. width: 40vw;
  149. right: 0px;
  150. position: fixed;
  151. z-index: 20;
  152. overflow: hidden;
  153. display: none;
  154. }
  155. @media screen and (min-width: 1025px) {
  156. #menu-box {
  157. display: none;
  158. }
  159. }
  160. #menu-box hr {
  161. margin: 5px auto !important;
  162. width: 25vw;
  163. background: #fff;
  164. opacity: 1 !important;
  165. }
  166. #menu-box #menu-box2 {
  167. padding-bottom: 5vw;
  168. position: relative;
  169. width: 40vw;
  170. background-color: #313131;
  171. z-index: 7;
  172. text-align: center;
  173. }
  174. #menu-box #menu-box2 .close {
  175. padding: 30px 15px 15px 15px;
  176. }
  177. #menu-box #menu-box2 a {
  178. display: inline-block;
  179. text-decoration: none;
  180. color: #fff;
  181. font-size: 14px;
  182. font-weight: 900;
  183. text-align: center;
  184. padding: 0 !important;
  185. }
  186. #banner {
  187. width: 100vw;
  188. display: inline-block;
  189. background: url(./img/banner2.jpg), linear-gradient(75deg, rgba(0, 0, 0, 0.52) 35%, transparent 30%);
  190. background-position: center center;
  191. background-size: cover;
  192. background-blend-mode: overlay;
  193. }
  194. @media screen and (max-width: 767px) {
  195. #banner {
  196. background: url(./img/mobile-banner1.jpg);
  197. }
  198. }
  199. #banner #banner-container {
  200. width: 80vw;
  201. margin: 50px auto;
  202. padding-bottom: 5vw;
  203. }
  204. @media screen and (max-width: 767px) {
  205. #banner #banner-container {
  206. width: 85vw;
  207. padding-bottom: 10vw;
  208. }
  209. }
  210. #banner #banner-container .youtube {
  211. width: 80vw;
  212. padding-top: 10vw;
  213. margin: 0 auto;
  214. color: #fff;
  215. }
  216. #banner #banner-container .youtube a {
  217. text-decoration: none;
  218. color: #fff;
  219. }
  220. @media screen and (max-width: 767px) {
  221. #banner #banner-container .youtube {
  222. padding-top: 10vw;
  223. margin: 0 auto;
  224. }
  225. }
  226. #banner #banner-container .youtube #youtube-text h1 {
  227. font-size: 40px;
  228. text-align: left;
  229. }
  230. @media screen and (max-width: 767px) {
  231. #banner #banner-container .youtube #youtube-text h1 {
  232. font-size: 30px;
  233. margin: 0;
  234. }
  235. }
  236. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  237. width: 380px;
  238. }
  239. @media screen and (max-width: 767px) {
  240. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  241. width: 80vw;
  242. }
  243. }
  244. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  245. width: 350px;
  246. }
  247. @media screen and (max-width: 767px) {
  248. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  249. width: 80vw;
  250. }
  251. }
  252. #banner #banner-container .youtube #youtube-text p {
  253. width: 300px;
  254. }
  255. @media screen and (max-width: 767px) {
  256. #banner #banner-container .youtube #youtube-text p {
  257. width: 80vw;
  258. }
  259. }
  260. #banner #banner-container .youtube hr {
  261. width: 12vw;
  262. height: 2px;
  263. color: #fff;
  264. margin: 20px 0px;
  265. opacity: 1 !important;
  266. }
  267. @media screen and (max-width: 767px) {
  268. #banner #banner-container .youtube hr {
  269. width: 80vw;
  270. }
  271. }
  272. #banner #banner-container .youtube .youtube-text-hr {
  273. width: 20vw;
  274. padding: 10px;
  275. }
  276. @media screen and (max-width: 767px) {
  277. #banner #banner-container .youtube .youtube-text-hr {
  278. width: 80vw;
  279. }
  280. }
  281. #banner #banner-container .youtube p {
  282. font-size: 18px;
  283. }
  284. #banner #banner-container .youtube h1 {
  285. font-size: 30px;
  286. }
  287. @media screen and (max-width: 767px) {
  288. #banner #banner-container .youtube h1 {
  289. font-size: 25px;
  290. padding: 15px 0px;
  291. }
  292. }
  293. @media screen and (max-width: 767px) {
  294. #banner #banner-container .youtube .learn-more {
  295. width: 100%;
  296. margin: 10px 0px;
  297. }
  298. }
  299. #banner #banner-container #youtube2 #youtube-text h1 {
  300. font-size: 30px;
  301. }
  302. @media screen and (max-width: 767px) {
  303. #banner #banner-container #youtube2 #youtube-text h1 {
  304. font-size: 23px;
  305. margin: 0;
  306. }
  307. }
  308. #banner #banner-container #youtube2 #youtube-text .youtube-text-title1 {
  309. width: 450px;
  310. }
  311. @media screen and (max-width: 767px) {
  312. #banner #banner-container #youtube2 #youtube-text .youtube-text-title1 {
  313. width: 80vw;
  314. }
  315. }
  316. #banner #banner-container #youtube2 #youtube-text .youtube-text-title2 {
  317. width: 450px;
  318. }
  319. @media screen and (max-width: 767px) {
  320. #banner #banner-container #youtube2 #youtube-text .youtube-text-title2 {
  321. width: 80vw;
  322. }
  323. }
  324. #banner #banner-container .contact-form-destop {
  325. text-align: center;
  326. }
  327. @media screen and (max-width: 767px) {
  328. #banner #banner-container .contact-form-destop {
  329. display: none;
  330. }
  331. }
  332. #banner #banner-container .contact-form-destop h1 {
  333. padding: 5vw 0 1vw 0;
  334. color: #fff;
  335. }
  336. @media screen and (max-width: 767px) {
  337. #banner #banner-container .contact-form-destop h1 {
  338. font-size: 20px;
  339. padding: 15px;
  340. }
  341. }
  342. #banner #banner-container .contact-form-destop #email {
  343. width: 50%;
  344. font-size: 16px;
  345. margin: 15px 0;
  346. padding: 10px 15px;
  347. border: none;
  348. height: 50px;
  349. border: 1px solid #313131;
  350. }
  351. @media screen and (max-width: 767px) {
  352. #banner #banner-container .contact-form-destop #email {
  353. display: none;
  354. }
  355. }
  356. #banner #banner-container .contact-form-destop .btn {
  357. color: #fff;
  358. width: 25%;
  359. height: 50px;
  360. margin: 15px 0px;
  361. font-size: 16px;
  362. border-radius: 0%;
  363. border: none;
  364. font-weight: 900;
  365. background: #93000a;
  366. vertical-align: top;
  367. -webkit-transition: 0.3s;
  368. transition: 0.3s;
  369. }
  370. @media screen and (max-width: 767px) {
  371. #banner #banner-container .contact-form-destop .btn {
  372. display: none;
  373. }
  374. }
  375. #banner #banner-container .contact-form-destop .btn:hover {
  376. font-size: 17px;
  377. }
  378. @media screen and (min-width: 1025px) {
  379. #banner #banner-container .contact-form-mobile {
  380. display: none;
  381. }
  382. }
  383. #banner #banner-container .contact-form-mobile h1 {
  384. text-align: center;
  385. padding: 10vw 0 1vw 0;
  386. color: #fff;
  387. font-size: 20px;
  388. }
  389. #banner #banner-container .contact-form-mobile #email-moblie {
  390. margin: 10px auto;
  391. width: 75%;
  392. padding: 10px 15px;
  393. border: none;
  394. height: 50px;
  395. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  396. background-size: 20px 15px;
  397. background-color: #fff;
  398. text-align: center;
  399. color: #313131;
  400. font-weight: 900;
  401. }
  402. @media screen and (min-width: 1025px) {
  403. #banner #banner-container .contact-form-mobile #email-moblie {
  404. display: none;
  405. }
  406. }
  407. #banner #banner-container #email-arrow {
  408. width: 15%;
  409. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  410. background-size: 10px 15px;
  411. background-color: #93000a;
  412. height: 50px;
  413. margin: 10px auto;
  414. font-size: 16px;
  415. border-radius: 0%;
  416. border: none;
  417. font-weight: 900;
  418. vertical-align: top;
  419. }
  420. @media screen and (min-width: 1025px) {
  421. #banner #banner-container #email-arrow {
  422. display: none;
  423. }
  424. }
  425. #sec01 {
  426. padding-top: 5vw;
  427. }
  428. #sec01 .NEWS {
  429. width: 80vw;
  430. margin: 0 auto;
  431. margin-top: -130px;
  432. margin-bottom: 100px;
  433. }
  434. @media screen and (max-width: 767px) {
  435. #sec01 .NEWS {
  436. margin-top: -70px;
  437. width: 90vw;
  438. }
  439. }
  440. #sec01 .NEWS h1 {
  441. padding: 0;
  442. margin: 0;
  443. font-weight: 900;
  444. color: #fff;
  445. letter-spacing: 3px;
  446. font-size: 60px;
  447. }
  448. @media screen and (max-width: 767px) {
  449. #sec01 .NEWS h1 {
  450. font-size: 50px;
  451. }
  452. }
  453. #sec01 #sec01-container {
  454. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  455. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  456. margin: 0 auto !important;
  457. }
  458. @media screen and (max-width: 767px) {
  459. #sec01 #sec01-container {
  460. width: 90vw;
  461. margin: 0 auto;
  462. }
  463. }
  464. #sec01 #sec01-container #sec01-container-card .card {
  465. padding: 30px;
  466. border: none !important;
  467. }
  468. @media screen and (max-width: 767px) {
  469. #sec01 #sec01-container #sec01-container-card .card {
  470. padding: 15px;
  471. }
  472. }
  473. #sec01 #sec01-container #sec01-container-card .card h1 {
  474. padding: 15px;
  475. font-size: 40px;
  476. font-weight: 900;
  477. color: #9b9b9b;
  478. }
  479. #sec01 #sec01-container #sec01-container-card .card p {
  480. padding: 5px;
  481. font-size: 18px;
  482. margin-bottom: 0 !important;
  483. }
  484. @media screen and (max-width: 767px) {
  485. #sec01 #sec01-container #sec01-container-card .card p {
  486. padding: 0px;
  487. font-size: 16px;
  488. }
  489. }
  490. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  491. padding: 15px 0px;
  492. font-weight: 900;
  493. font-size: 22px;
  494. }
  495. @media screen and (max-width: 767px) {
  496. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  497. font-size: 18px;
  498. }
  499. }
  500. #sec01 #sec01-container #sec01-container-card .card a {
  501. text-decoration: none;
  502. color: #000;
  503. -webkit-transition: 0.3s;
  504. transition: 0.3s;
  505. cursor: pointer;
  506. }
  507. #sec01 #sec01-container #sec01-container-card .card a:hover {
  508. color: #2828ff;
  509. }
  510. #sec01 #sec01-container #sec01-container-card .card img {
  511. text-align: center;
  512. width: 35vw;
  513. height: 240px;
  514. -o-object-fit: cover;
  515. object-fit: cover;
  516. }
  517. @media screen and (max-width: 767px) {
  518. #sec01 #sec01-container #sec01-container-card .card img {
  519. width: 85vw;
  520. height: 200px;
  521. margin: 0 auto;
  522. }
  523. }
  524. #sec-works .sec-work-container {
  525. width: 85vw;
  526. }
  527. #sec-works #sec-work-box .work-box .card {
  528. height: 780px;
  529. text-align: center;
  530. display: inline-block !important;
  531. -webkit-transition: 0.3s;
  532. transition: 0.3s;
  533. }
  534. #sec-works #sec-work-box .work-box .card:hover {
  535. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  536. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  537. }
  538. #sec-works .sec-work-title h1 {
  539. font-size: 45px;
  540. font-weight: 900;
  541. padding: 15px;
  542. }
  543. #sec02 {
  544. background: #414141;
  545. padding: 3vw;
  546. }
  547. @media screen and (max-width: 767px) {
  548. #sec02 {
  549. display: none;
  550. }
  551. }
  552. #sec02 #sec02-container {
  553. width: 90vw;
  554. padding: 15px;
  555. font-weight: 900;
  556. color: #fff;
  557. position: relative;
  558. }
  559. #sec02 #sec02-container #sec02-top-box {
  560. position: relative;
  561. }
  562. #sec02 #sec02-container #sec02-top-box #sec02-content {
  563. position: absolute;
  564. top: 10px;
  565. left: 300px;
  566. }
  567. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  568. color: #000;
  569. width: 13vw;
  570. }
  571. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  572. display: inline;
  573. width: 150px;
  574. height: 200px;
  575. -o-object-fit: cover;
  576. object-fit: cover;
  577. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  578. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  579. }
  580. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text h1 {
  581. font-size: 50px;
  582. }
  583. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  584. font-size: 30px;
  585. }
  586. #sec02-moblie {
  587. background: #414141;
  588. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  589. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  590. padding-top: 3vw;
  591. padding-bottom: 10vw;
  592. }
  593. @media screen and (min-width: 1025px) {
  594. #sec02-moblie {
  595. display: none;
  596. }
  597. }
  598. #sec02-moblie #sec02-container {
  599. padding: 15px;
  600. font-weight: 900;
  601. color: #fff;
  602. width: 100vw;
  603. }
  604. #sec02-moblie #sec02-container .sec02-top1-box h1 {
  605. font-size: 40px;
  606. padding: 3vw 0;
  607. }
  608. #sec02-moblie #sec02-container .sec02-top1-box img {
  609. width: 80px;
  610. }
  611. #sec02-moblie #sec02-container .sec02-top1-box span {
  612. font-size: 30px;
  613. }
  614. #sec02-moblie #sec02-container .sec02-top1-box .sec02-top-text {
  615. text-align: center;
  616. }
  617. #sec02-moblie #sec02-container #sec02-top-box {
  618. width: 95vw;
  619. margin: 5px;
  620. }
  621. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  622. color: #000;
  623. }
  624. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  625. width: 100px;
  626. height: 130px;
  627. }
  628. @media screen and (max-width: 350px) {
  629. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  630. width: 100px;
  631. height: 130px;
  632. }
  633. }
  634. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  635. width: 80px;
  636. height: 120px;
  637. }
  638. @media screen and (max-width: 350px) {
  639. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  640. width: 70px;
  641. height: 100px;
  642. }
  643. }
  644. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  645. font-size: 12px;
  646. text-align: left;
  647. }
  648. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  649. font-size: 30px;
  650. }
  651. @media screen and (max-width: 350px) {
  652. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  653. font-size: 25px;
  654. }
  655. }
  656. #sec03 {
  657. padding-top: 15vw;
  658. padding-bottom: 5vw;
  659. }
  660. @media screen and (max-width: 767px) {
  661. #sec03 {
  662. display: none;
  663. }
  664. }
  665. #sec03 #sec03-table .sec03-table-title {
  666. font-family: 微軟正黑體;
  667. font-weight: 900;
  668. padding: 15px;
  669. font-size: 35px;
  670. }
  671. #sec03 #sec03-table .table th {
  672. font-size: 40px;
  673. display: table-cell;
  674. vertical-align: middle;
  675. }
  676. #sec03 #sec03-table .table td {
  677. padding: 15px;
  678. }
  679. #sec03 #sec03-table .table td a {
  680. text-decoration: none;
  681. color: #000;
  682. }
  683. #sec03 #sec03-table .table img {
  684. width: 50px;
  685. }
  686. #sec03 #sec03-table .table .sec03-table-text {
  687. padding: 10px;
  688. display: table-cell;
  689. vertical-align: middle;
  690. }
  691. #sec03 #sec03-table .table .sec03-table-text h1 {
  692. font-size: 20px;
  693. margin: 0;
  694. font-weight: 900;
  695. }
  696. #sec03 #sec03-table .table .sec03-table-text p {
  697. margin: 0;
  698. color: #9b9b9b;
  699. }
  700. #sec03-moblie {
  701. position: relative;
  702. }
  703. #sec03-moblie .arrow-table {
  704. position: fixed;
  705. width: 25px;
  706. right: 15px;
  707. bottom: 250px;
  708. z-index: 6;
  709. }
  710. @media screen and (max-width: 350px) {
  711. #sec03-moblie .arrow-table {
  712. right: 10px;
  713. bottom: 200px;
  714. }
  715. }
  716. #sec03-moblie .sec03-table-title,
  717. #sec03-moblie .sec03-table-title2 {
  718. font-family: 微軟正黑體;
  719. font-weight: 900;
  720. font-size: 14px;
  721. display: inline-block;
  722. color: #9b9b9b;
  723. }
  724. @media screen and (max-width: 350px) {
  725. #sec03-moblie .sec03-table-title,
  726. #sec03-moblie .sec03-table-title2 {
  727. font-size: 12px;
  728. }
  729. }
  730. #sec03-moblie .contant-toggle {
  731. display: inline-block;
  732. color: #000;
  733. padding-bottom: 10px;
  734. border-bottom: 2px solid #000;
  735. }
  736. #sec03-moblie #sec03-slider {
  737. padding-top: 5vw;
  738. }
  739. #sec03-moblie #sec03-slider .slick-slide img {
  740. display: inline;
  741. }
  742. #sec03-moblie #sec03-slider #sec03-slider1,
  743. #sec03-moblie #sec03-slider #sec03-slider2 {
  744. margin-left: 10px;
  745. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  746. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  747. }
  748. @media screen and (max-width: 350px) {
  749. #sec03-moblie #sec03-slider #sec03-slider1,
  750. #sec03-moblie #sec03-slider #sec03-slider2 {
  751. margin: 0 5px;
  752. }
  753. }
  754. #sec03-moblie #sec03-slider .table th {
  755. font-size: 40px;
  756. display: table-cell;
  757. vertical-align: middle;
  758. padding: 15px;
  759. }
  760. @media screen and (max-width: 350px) {
  761. #sec03-moblie #sec03-slider .table th {
  762. font-size: 25px;
  763. }
  764. }
  765. #sec03-moblie #sec03-slider .table td {
  766. display: table-cell;
  767. vertical-align: middle;
  768. padding: 15px;
  769. padding: 10px 0;
  770. }
  771. @media screen and (max-width: 350px) {
  772. #sec03-moblie #sec03-slider .table td {
  773. padding: 0px;
  774. }
  775. }
  776. #sec03-moblie #sec03-slider .table td a {
  777. text-decoration: none;
  778. color: #000;
  779. }
  780. #sec03-moblie #sec03-slider .table img {
  781. width: 50px;
  782. }
  783. #sec03-moblie #sec03-slider .table .sec03-table-text {
  784. padding: 0px 0px 0px 3px;
  785. display: table-cell;
  786. vertical-align: middle;
  787. }
  788. @media screen and (max-width: 350px) {
  789. #sec03-moblie #sec03-slider .table .sec03-table-text {
  790. padding: 0px;
  791. }
  792. }
  793. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  794. font-size: 14px;
  795. margin: 0;
  796. font-weight: 900;
  797. }
  798. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  799. margin: 0;
  800. font-size: 12px;
  801. color: #9b9b9b;
  802. }
  803. @media screen and (min-width: 1025px) {
  804. #sec03-moblie {
  805. display: none;
  806. }
  807. }
  808. #sec04 {
  809. padding-top: 5vw;
  810. padding-bottom: 5vw;
  811. background: #414141;
  812. background-position: center center;
  813. background-size: cover;
  814. }
  815. @media screen and (max-width: 767px) {
  816. #sec04 {
  817. display: none;
  818. }
  819. }
  820. #sec04 .sec04-title {
  821. padding-bottom: 1vw;
  822. }
  823. #sec04 .sec04-title h1 {
  824. color: #fff;
  825. font-size: 45px;
  826. font-weight: 900;
  827. padding: 10px 10px;
  828. }
  829. @media screen and (max-width: 767px) {
  830. #sec04 .sec04-title h1 {
  831. font-weight: 900;
  832. font-size: 32px;
  833. }
  834. }
  835. #sec04 .sec04-title hr {
  836. width: 12vw;
  837. height: 2px;
  838. color: #fff !important;
  839. margin: 10px;
  840. opacity: 1 !important;
  841. }
  842. @media screen and (max-width: 767px) {
  843. #sec04 .sec04-title hr {
  844. width: 30vw;
  845. }
  846. }
  847. #sec04 .learn-more {
  848. width: 120px;
  849. }
  850. #sec04 #sec04-container {
  851. background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #414141), color-stop(0%, #eee));
  852. background: linear-gradient(180deg, #414141 15%, #eee 0%);
  853. padding: 20px;
  854. padding-bottom: 50px;
  855. }
  856. #sec04 #sec04-container .card {
  857. border: none;
  858. border-radius: 0%;
  859. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  860. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  861. }
  862. #sec04 #sec04-container .card img {
  863. height: 150px;
  864. -o-object-fit: cover;
  865. object-fit: cover;
  866. }
  867. #sec04 #sec04-container .card .card-title {
  868. font-weight: 900;
  869. }
  870. #sec04-moblie {
  871. padding-top: 5vw;
  872. padding-bottom: 5vw;
  873. background: #414141;
  874. position: relative;
  875. overflow: hidden;
  876. }
  877. #sec04-moblie .arrow-table {
  878. position: fixed;
  879. width: 25px;
  880. right: 15px;
  881. bottom: 240px;
  882. z-index: 6;
  883. }
  884. @media screen and (max-width: 350px) {
  885. #sec04-moblie .arrow-table {
  886. right: 10px;
  887. }
  888. }
  889. #sec04-moblie .sec04-button {
  890. text-align: center;
  891. margin-top: -50px;
  892. width: 85vw;
  893. }
  894. @media screen and (min-width: 1025px) {
  895. #sec04-moblie .sec04-button {
  896. display: none;
  897. }
  898. }
  899. #sec04-moblie .sec04-button .mouse_scroll {
  900. display: inline-block;
  901. margin: 0 auto;
  902. width: 24px;
  903. -webkit-transform: rotate(90deg);
  904. transform: rotate(90deg);
  905. }
  906. #sec04-moblie .sec04-button .testright {
  907. -webkit-transform: rotate(180deg);
  908. transform: rotate(180deg);
  909. }
  910. #sec04-moblie .sec04-button .m_scroll_arrows {
  911. display: block;
  912. width: 5px;
  913. height: 5px;
  914. /* IE 9 */
  915. -webkit-transform: rotate(45deg);
  916. /* Chrome, Safari, Opera */
  917. transform: rotate(45deg);
  918. border-right: 2px solid #fff;
  919. border-bottom: 2px solid #fff;
  920. margin: 0 0 3px 4px;
  921. width: 16px;
  922. height: 16px;
  923. }
  924. #sec04-moblie .sec04-button .unu {
  925. margin-top: 1px;
  926. }
  927. #sec04-moblie .sec04-button .unu,
  928. #sec04-moblie .sec04-button .doi,
  929. #sec04-moblie .sec04-button .trei {
  930. -webkit-animation: mouse-scroll 1s infinite;
  931. animation: mouse-scroll 1s infinite;
  932. }
  933. #sec04-moblie .sec04-button .unu {
  934. -webkit-animation-delay: 0.1s;
  935. -moz-animation-delay: 0.1s;
  936. -webkit-animation-direction: alternate;
  937. animation-direction: alternate;
  938. -webkit-animation-delay: alternate;
  939. animation-delay: alternate;
  940. }
  941. #sec04-moblie .sec04-button .doi {
  942. -webkit-animation-delay: 0.2s;
  943. -moz-animation-delay: 0.2s;
  944. -webkit-animation-direction: alternate;
  945. animation-delay: 0.2s;
  946. animation-direction: alternate;
  947. margin-top: -6px;
  948. }
  949. #sec04-moblie .sec04-button .trei {
  950. -webkit-animation-delay: 0.3s;
  951. -moz-animation-delay: 0.3s;
  952. -webkit-animation-direction: alternate;
  953. animation-delay: 0.3s;
  954. animation-direction: alternate;
  955. margin-top: -6px;
  956. }
  957. #sec04-moblie .sec04-button .mouse {
  958. height: 42px;
  959. width: 24px;
  960. border-radius: 14px;
  961. -webkit-transform: none;
  962. transform: none;
  963. border: 2px solid #fff;
  964. top: 170px;
  965. }
  966. #sec04-moblie .sec04-button .wheel {
  967. height: 5px;
  968. width: 2px;
  969. display: block;
  970. margin: 5px auto;
  971. background: #fff;
  972. position: relative;
  973. height: 4px;
  974. width: 4px;
  975. border: 2px solid #fff;
  976. border-radius: 8px;
  977. }
  978. #sec04-moblie .sec04-button .wheel {
  979. -webkit-animation: mouse-wheel 0.6s linear infinite;
  980. animation: mouse-wheel 0.8s linear infinite;
  981. }
  982. @-webkit-keyframes mouse-wheel {
  983. 0% {
  984. opacity: 1;
  985. -webkit-transform: translateY(0);
  986. transform: translateY(0);
  987. }
  988. 100% {
  989. opacity: 0;
  990. -webkit-transform: translateY(6px);
  991. transform: translateY(6px);
  992. }
  993. }
  994. @keyframes mouse-wheel {
  995. 0% {
  996. top: 1px;
  997. }
  998. 25% {
  999. top: 5px;
  1000. }
  1001. 50% {
  1002. top: 15px;
  1003. }
  1004. 75% {
  1005. top: 5px;
  1006. }
  1007. 100% {
  1008. top: 1px;
  1009. }
  1010. }
  1011. @-webkit-keyframes mouse-scroll {
  1012. 0% {
  1013. opacity: 0;
  1014. }
  1015. 50% {
  1016. opacity: 0.5;
  1017. }
  1018. 100% {
  1019. opacity: 1;
  1020. }
  1021. }
  1022. @keyframes mouse-scroll {
  1023. 0% {
  1024. opacity: 0;
  1025. }
  1026. 50% {
  1027. opacity: 0.5;
  1028. }
  1029. 100% {
  1030. opacity: 1;
  1031. }
  1032. }
  1033. @media screen and (min-width: 1025px) {
  1034. #sec04-moblie {
  1035. display: none;
  1036. }
  1037. }
  1038. #sec04-moblie h1 {
  1039. color: #fff;
  1040. font-size: 45px;
  1041. font-weight: 900;
  1042. padding: 5px 10px;
  1043. }
  1044. @media screen and (max-width: 767px) {
  1045. #sec04-moblie h1 {
  1046. font-weight: 900;
  1047. font-size: 32px;
  1048. }
  1049. }
  1050. #sec04-moblie hr {
  1051. width: 30vw;
  1052. height: 2px;
  1053. color: #fff;
  1054. margin: 10px;
  1055. opacity: 1 !important;
  1056. }
  1057. #sec04-moblie #sec04-moblie-container {
  1058. padding-top: 10vw;
  1059. }
  1060. #sec04-moblie #sec04-moblie-container .col {
  1061. margin: 10px;
  1062. }
  1063. #sec04-moblie #sec04-moblie-container .col .card {
  1064. border-radius: 0%;
  1065. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1066. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1067. }
  1068. #sec04-moblie #sec04-moblie-container .col .card img {
  1069. height: 150px;
  1070. -o-object-fit: cover;
  1071. object-fit: cover;
  1072. }
  1073. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  1074. font-weight: 900;
  1075. }
  1076. #sec04-moblie #sec04-moblie-container .col .card .learn-more {
  1077. width: 120px;
  1078. }
  1079. #sec05 {
  1080. width: 85vw;
  1081. margin: 0 auto;
  1082. padding-top: 5vw;
  1083. padding-bottom: 5vw;
  1084. }
  1085. @media screen and (max-width: 767px) {
  1086. #sec05 {
  1087. display: none;
  1088. }
  1089. }
  1090. #sec05 h1 {
  1091. font-size: 45px;
  1092. font-weight: 900;
  1093. padding: 15px;
  1094. }
  1095. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  1096. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  1097. opacity: 0;
  1098. }
  1099. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  1100. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1101. width: 40px;
  1102. height: 40px;
  1103. content: none;
  1104. }
  1105. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  1106. background-image: url(./img/arrow-table2.png);
  1107. background-repeat: no-repeat;
  1108. left: -40px;
  1109. }
  1110. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  1111. background-image: url(./img/arrow-table2.png);
  1112. background-repeat: no-repeat;
  1113. }
  1114. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1115. background-image: url(./img/arrow-table.png);
  1116. background-repeat: no-repeat;
  1117. right: -50px;
  1118. }
  1119. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  1120. background-image: url(./img/arrow-table.png);
  1121. background-repeat: no-repeat;
  1122. }
  1123. #sec05 #sec05-container .col {
  1124. margin: 5px;
  1125. }
  1126. #sec05 #sec05-container .card {
  1127. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1128. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1129. }
  1130. #sec05-moblie {
  1131. padding-top: 5vw;
  1132. padding-bottom: 10vw;
  1133. overflow: hidden;
  1134. }
  1135. @media screen and (min-width: 1025px) {
  1136. #sec05-moblie {
  1137. display: none;
  1138. }
  1139. }
  1140. #sec05-moblie #sec05-moblie-container {
  1141. position: relative;
  1142. }
  1143. #sec05-moblie #sec05-moblie-container .arrow-table {
  1144. position: fixed;
  1145. width: 25px;
  1146. right: 5px;
  1147. bottom: 300px;
  1148. z-index: 6;
  1149. }
  1150. @media screen and (max-width: 350px) {
  1151. #sec05-moblie #sec05-moblie-container .arrow-table {
  1152. right: 10px;
  1153. }
  1154. }
  1155. #sec05-moblie h1 {
  1156. font-size: 45px;
  1157. font-weight: 900;
  1158. padding: 15px;
  1159. }
  1160. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1161. padding: 20px;
  1162. margin: 30px;
  1163. }
  1164. @media screen and (max-width: 400px) {
  1165. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1166. padding: 5px;
  1167. margin: 20px;
  1168. }
  1169. }
  1170. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box .card {
  1171. border: none;
  1172. }
  1173. #sec05-moblie .sec05-button {
  1174. text-align: center;
  1175. margin-top: -50px;
  1176. }
  1177. #sec05-moblie .sec05-button .mouse_scroll {
  1178. display: inline-block;
  1179. margin: 0 auto;
  1180. width: 24px;
  1181. -webkit-transform: rotate(90deg);
  1182. transform: rotate(90deg);
  1183. }
  1184. #sec05-moblie .sec05-button .testright {
  1185. -webkit-transform: rotate(180deg);
  1186. transform: rotate(180deg);
  1187. }
  1188. #sec05-moblie .sec05-button .m_scroll_arrows {
  1189. display: block;
  1190. width: 5px;
  1191. height: 5px;
  1192. /* IE 9 */
  1193. -webkit-transform: rotate(45deg);
  1194. /* Chrome, Safari, Opera */
  1195. transform: rotate(45deg);
  1196. border-right: 2px solid #000;
  1197. border-bottom: 2px solid #000;
  1198. margin: 0 0 3px 4px;
  1199. width: 16px;
  1200. height: 16px;
  1201. }
  1202. #sec05-moblie .sec05-button .unu {
  1203. margin-top: 1px;
  1204. }
  1205. #sec05-moblie .sec05-button .unu,
  1206. #sec05-moblie .sec05-button .doi,
  1207. #sec05-moblie .sec05-button .trei {
  1208. -webkit-animation: mouse-scroll 1s infinite;
  1209. animation: mouse-scroll 1s infinite;
  1210. }
  1211. #sec05-moblie .sec05-button .unu {
  1212. -webkit-animation-delay: 0.1s;
  1213. -moz-animation-delay: 0.1s;
  1214. -webkit-animation-direction: alternate;
  1215. animation-direction: alternate;
  1216. -webkit-animation-delay: alternate;
  1217. animation-delay: alternate;
  1218. }
  1219. #sec05-moblie .sec05-button .doi {
  1220. -webkit-animation-delay: 0.2s;
  1221. -moz-animation-delay: 0.2s;
  1222. -webkit-animation-direction: alternate;
  1223. animation-delay: 0.2s;
  1224. animation-direction: alternate;
  1225. margin-top: -6px;
  1226. }
  1227. #sec05-moblie .sec05-button .trei {
  1228. -webkit-animation-delay: 0.3s;
  1229. -moz-animation-delay: 0.3s;
  1230. -webkit-animation-direction: alternate;
  1231. animation-delay: 0.3s;
  1232. animation-direction: alternate;
  1233. margin-top: -6px;
  1234. }
  1235. #sec05-moblie .sec05-button .mouse {
  1236. height: 42px;
  1237. width: 24px;
  1238. border-radius: 14px;
  1239. -webkit-transform: none;
  1240. transform: none;
  1241. border: 2px solid #000;
  1242. top: 170px;
  1243. }
  1244. #sec05-moblie .sec05-button .wheel {
  1245. height: 5px;
  1246. width: 2px;
  1247. display: block;
  1248. margin: 5px auto;
  1249. background: #000;
  1250. position: relative;
  1251. height: 4px;
  1252. width: 4px;
  1253. border: 2px solid #000;
  1254. border-radius: 8px;
  1255. }
  1256. #sec05-moblie .sec05-button .wheel {
  1257. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1258. animation: mouse-wheel 0.8s linear infinite;
  1259. }
  1260. @-webkit-keyframes mouse-wheel {
  1261. 0% {
  1262. opacity: 1;
  1263. -webkit-transform: translateY(0);
  1264. transform: translateY(0);
  1265. }
  1266. 100% {
  1267. opacity: 0;
  1268. -webkit-transform: translateY(6px);
  1269. transform: translateY(6px);
  1270. }
  1271. }
  1272. @keyframes mouse-wheel {
  1273. 0% {
  1274. top: 1px;
  1275. }
  1276. 25% {
  1277. top: 5px;
  1278. }
  1279. 50% {
  1280. top: 15px;
  1281. }
  1282. 75% {
  1283. top: 5px;
  1284. }
  1285. 100% {
  1286. top: 1px;
  1287. }
  1288. }
  1289. @-webkit-keyframes mouse-scroll {
  1290. 0% {
  1291. opacity: 0;
  1292. }
  1293. 50% {
  1294. opacity: 0.5;
  1295. }
  1296. 100% {
  1297. opacity: 1;
  1298. }
  1299. }
  1300. @keyframes mouse-scroll {
  1301. 0% {
  1302. opacity: 0;
  1303. }
  1304. 50% {
  1305. opacity: 0.5;
  1306. }
  1307. 100% {
  1308. opacity: 1;
  1309. }
  1310. }
  1311. #sec06 {
  1312. width: 100vw;
  1313. padding-top: 5vw;
  1314. padding-bottom: 10vw;
  1315. background: #525252;
  1316. }
  1317. @media screen and (max-width: 767px) {
  1318. #sec06 {
  1319. background: #313131;
  1320. }
  1321. }
  1322. #sec06 .sec06-button {
  1323. text-align: center;
  1324. width: 75vw;
  1325. }
  1326. @media screen and (min-width: 1025px) {
  1327. #sec06 .sec06-button {
  1328. display: none;
  1329. }
  1330. }
  1331. #sec06 .sec06-button .mouse_scroll {
  1332. display: inline-block;
  1333. margin: 0 auto;
  1334. width: 24px;
  1335. -webkit-transform: rotate(90deg);
  1336. transform: rotate(90deg);
  1337. }
  1338. #sec06 .sec06-button .testright {
  1339. -webkit-transform: rotate(180deg);
  1340. transform: rotate(180deg);
  1341. }
  1342. #sec06 .sec06-button .m_scroll_arrows {
  1343. display: block;
  1344. width: 5px;
  1345. height: 5px;
  1346. /* IE 9 */
  1347. -webkit-transform: rotate(45deg);
  1348. /* Chrome, Safari, Opera */
  1349. transform: rotate(45deg);
  1350. border-right: 2px solid #fff;
  1351. border-bottom: 2px solid #fff;
  1352. margin: 0 0 3px 4px;
  1353. width: 16px;
  1354. height: 16px;
  1355. }
  1356. #sec06 .sec06-button .unu {
  1357. margin-top: 1px;
  1358. }
  1359. #sec06 .sec06-button .unu,
  1360. #sec06 .sec06-button .doi,
  1361. #sec06 .sec06-button .trei {
  1362. -webkit-animation: mouse-scroll 1s infinite;
  1363. animation: mouse-scroll 1s infinite;
  1364. }
  1365. #sec06 .sec06-button .unu {
  1366. -webkit-animation-delay: 0.1s;
  1367. -moz-animation-delay: 0.1s;
  1368. -webkit-animation-direction: alternate;
  1369. animation-direction: alternate;
  1370. -webkit-animation-delay: alternate;
  1371. animation-delay: alternate;
  1372. }
  1373. #sec06 .sec06-button .doi {
  1374. -webkit-animation-delay: 0.2s;
  1375. -moz-animation-delay: 0.2s;
  1376. -webkit-animation-direction: alternate;
  1377. animation-delay: 0.2s;
  1378. animation-direction: alternate;
  1379. margin-top: -6px;
  1380. }
  1381. #sec06 .sec06-button .trei {
  1382. -webkit-animation-delay: 0.3s;
  1383. -moz-animation-delay: 0.3s;
  1384. -webkit-animation-direction: alternate;
  1385. animation-delay: 0.3s;
  1386. animation-direction: alternate;
  1387. margin-top: -6px;
  1388. }
  1389. #sec06 .sec06-button .mouse {
  1390. height: 42px;
  1391. width: 24px;
  1392. border-radius: 14px;
  1393. -webkit-transform: none;
  1394. transform: none;
  1395. border: 2px solid #fff;
  1396. top: 170px;
  1397. }
  1398. #sec06 .sec06-button .wheel {
  1399. height: 5px;
  1400. width: 2px;
  1401. display: block;
  1402. margin: 5px auto;
  1403. background: #fff;
  1404. position: relative;
  1405. height: 4px;
  1406. width: 4px;
  1407. border: 2px solid #fff;
  1408. border-radius: 8px;
  1409. }
  1410. #sec06 .sec06-button .wheel {
  1411. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1412. animation: mouse-wheel 0.8s linear infinite;
  1413. }
  1414. @-webkit-keyframes mouse-wheel {
  1415. 0% {
  1416. opacity: 1;
  1417. -webkit-transform: translateY(0);
  1418. transform: translateY(0);
  1419. }
  1420. 100% {
  1421. opacity: 0;
  1422. -webkit-transform: translateY(6px);
  1423. transform: translateY(6px);
  1424. }
  1425. }
  1426. @keyframes mouse-wheel {
  1427. 0% {
  1428. top: 1px;
  1429. }
  1430. 25% {
  1431. top: 5px;
  1432. }
  1433. 50% {
  1434. top: 15px;
  1435. }
  1436. 75% {
  1437. top: 5px;
  1438. }
  1439. 100% {
  1440. top: 1px;
  1441. }
  1442. }
  1443. @-webkit-keyframes mouse-scroll {
  1444. 0% {
  1445. opacity: 0;
  1446. }
  1447. 50% {
  1448. opacity: 0.5;
  1449. }
  1450. 100% {
  1451. opacity: 1;
  1452. }
  1453. }
  1454. @keyframes mouse-scroll {
  1455. 0% {
  1456. opacity: 0;
  1457. }
  1458. 50% {
  1459. opacity: 0.5;
  1460. }
  1461. 100% {
  1462. opacity: 1;
  1463. }
  1464. }
  1465. #sec06 h1 {
  1466. font-size: 45px;
  1467. font-weight: 900;
  1468. padding: 15px;
  1469. color: #fff;
  1470. }
  1471. #sec06 hr {
  1472. width: 12vw;
  1473. height: 2px;
  1474. color: #fff;
  1475. margin: 10px;
  1476. opacity: 1 !important;
  1477. }
  1478. @media screen and (max-width: 767px) {
  1479. #sec06 hr {
  1480. width: 30vw;
  1481. }
  1482. }
  1483. #sec06 #sec06-container {
  1484. width: 80vw;
  1485. }
  1486. #sec06 #sec06-container .slick-prev:before,
  1487. #sec06 #sec06-container .slick-next:before {
  1488. opacity: 0;
  1489. }
  1490. #sec06 #sec06-container .slick-prev,
  1491. #sec06 #sec06-container .slick-next {
  1492. width: 40px;
  1493. height: 40px;
  1494. content: none;
  1495. }
  1496. #sec06 #sec06-container .slick-prev {
  1497. background-image: url(./img/sec06/sec06-arrow-2.png);
  1498. background-repeat: no-repeat;
  1499. left: -40px;
  1500. }
  1501. #sec06 #sec06-container .slick-prev:hover, #sec06 #sec06-container .slick-prev:focus {
  1502. background-image: url(./img/sec06/sec06-arrow-2.png);
  1503. background-repeat: no-repeat;
  1504. }
  1505. #sec06 #sec06-container .slick-next {
  1506. background-image: url(./img/sec06/sec06-arrow.png);
  1507. background-repeat: no-repeat;
  1508. right: -50px;
  1509. }
  1510. #sec06 #sec06-container .slick-next:hover, #sec06 #sec06-container .slick-next:focus {
  1511. background-image: url(./img/sec06/sec06-arrow.png);
  1512. background-repeat: no-repeat;
  1513. }
  1514. #sec06 #sec06-container .card {
  1515. margin: 10px;
  1516. height: 480px;
  1517. display: inline-block;
  1518. border-radius: 0%;
  1519. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1520. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1521. }
  1522. #sec06 #sec06-container .card img {
  1523. height: 150px;
  1524. -o-object-fit: cover;
  1525. object-fit: cover;
  1526. }
  1527. #sec06 #sec06-container .card .card-title {
  1528. font-weight: 900;
  1529. font-size: 18px;
  1530. }
  1531. #sec06 #sec06-container .card .learn-more {
  1532. width: 120px;
  1533. }
  1534. #sec06 #sec06-container .learn-more {
  1535. width: 120px;
  1536. }
  1537. #sec07 {
  1538. padding-top: 5vw;
  1539. padding-bottom: 5vw;
  1540. }
  1541. @media screen and (max-width: 767px) {
  1542. #sec07 {
  1543. display: none;
  1544. }
  1545. }
  1546. #sec07 .NFT-Collections-Sales-Volume {
  1547. width: 80vw;
  1548. margin: 0 auto;
  1549. margin-top: -120px;
  1550. margin-bottom: 50px;
  1551. }
  1552. @media screen and (max-width: 767px) {
  1553. #sec07 .NFT-Collections-Sales-Volume {
  1554. display: none;
  1555. }
  1556. }
  1557. #sec07 .NFT-Collections-Sales-Volume h1 {
  1558. padding: 0;
  1559. margin: 0;
  1560. font-weight: normal;
  1561. color: #fff;
  1562. letter-spacing: 3px;
  1563. font-size: 50px;
  1564. }
  1565. #sec07 .table {
  1566. text-align: center;
  1567. }
  1568. #sec07 .table thead tr th {
  1569. border: 0;
  1570. }
  1571. #sec07 .table td {
  1572. display: table-cell;
  1573. vertical-align: middle;
  1574. text-align: left;
  1575. }
  1576. #sec07 .table td img {
  1577. width: 50px;
  1578. }
  1579. #sec07 .table td .data-line {
  1580. width: 100px;
  1581. }
  1582. #sec07 .table th {
  1583. display: table-cell;
  1584. vertical-align: middle;
  1585. text-align: left;
  1586. }
  1587. #sec07 .table img {
  1588. padding: 5px;
  1589. }
  1590. #sec07 .sec07-table-button {
  1591. text-align: right;
  1592. }
  1593. #sec07 .sec07-table-button .data-button {
  1594. text-align: left;
  1595. border-radius: 25px;
  1596. width: 10vw;
  1597. padding: 5px 20px;
  1598. color: #000;
  1599. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1600. background-size: 18px 18px;
  1601. background-color: #fff;
  1602. border: 1px solid #000;
  1603. }
  1604. #sec07-moblir-title {
  1605. background: #414141;
  1606. }
  1607. @media screen and (min-width: 1025px) {
  1608. #sec07-moblir-title {
  1609. display: none;
  1610. }
  1611. }
  1612. #sec07-moblir-title #sec07-container {
  1613. padding: 15px;
  1614. font-weight: 900;
  1615. color: #fff;
  1616. }
  1617. #sec07-moblie {
  1618. padding-top: 5vw;
  1619. padding-bottom: 5vw;
  1620. }
  1621. @media screen and (min-width: 1025px) {
  1622. #sec07-moblie {
  1623. display: none;
  1624. }
  1625. }
  1626. #sec07-moblie .table {
  1627. text-align: center;
  1628. }
  1629. #sec07-moblie .table thead tr th {
  1630. border: 0;
  1631. }
  1632. #sec07-moblie .table td {
  1633. display: table-cell;
  1634. vertical-align: middle;
  1635. text-align-last: left;
  1636. font-size: 14px;
  1637. }
  1638. #sec07-moblie .table td img {
  1639. width: 30px;
  1640. }
  1641. #sec07-moblie .table td .data-line {
  1642. width: 80px;
  1643. }
  1644. #sec07-moblie .table th {
  1645. display: table-cell;
  1646. vertical-align: middle;
  1647. text-align: left;
  1648. font-size: 14px;
  1649. }
  1650. #sec07-moblie .table img {
  1651. padding: 5px;
  1652. width: 50px;
  1653. }
  1654. #sec07-moblie .sec07-table-button {
  1655. text-align: right;
  1656. }
  1657. #sec07-moblie .sec07-table-button .data-button {
  1658. text-align: left;
  1659. border-radius: 25px;
  1660. width: 35vw;
  1661. padding: 5px 20px;
  1662. color: #000;
  1663. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1664. background-size: 18px 18px;
  1665. background-color: #fff;
  1666. border: 1px solid #000;
  1667. }
  1668. #sec08 {
  1669. padding-bottom: 5vw;
  1670. background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  1671. background: linear-gradient(180deg, #414141 35%, transparent 30%, #fff 55%);
  1672. position: relative;
  1673. }
  1674. @media screen and (max-width: 767px) {
  1675. #sec08 {
  1676. background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  1677. background: linear-gradient(180deg, #414141 55%, transparent 30%, #fff 55%);
  1678. }
  1679. }
  1680. #sec08 #sec08-container-box {
  1681. background-size: contain;
  1682. background-repeat: no-repeat;
  1683. background-blend-mode: overlay;
  1684. }
  1685. #sec08 #sec08-title {
  1686. background: #414141;
  1687. padding-top: 5vw;
  1688. }
  1689. #sec08 #sec08-title .col-lg-9 {
  1690. position: relative;
  1691. }
  1692. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER {
  1693. position: absolute;
  1694. top: -10px;
  1695. right: 0vw;
  1696. }
  1697. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER h5 {
  1698. font-size: 5em;
  1699. opacity: 0.8;
  1700. /* 文字的距離 */
  1701. /* 通常搭配內距左邊 */
  1702. text-align: center;
  1703. letter-spacing: 10px;
  1704. font-weight: 900;
  1705. padding-left: 30px;
  1706. color: #f5f5f5;
  1707. }
  1708. @media screen and (max-width: 767px) {
  1709. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER h5 {
  1710. top: 200px;
  1711. font-size: 3rem;
  1712. letter-spacing: 5px;
  1713. display: none;
  1714. }
  1715. }
  1716. #sec08 #sec08-title h1 {
  1717. padding: 10px;
  1718. color: #fff;
  1719. font-size: 45px;
  1720. font-weight: 900;
  1721. }
  1722. @media screen and (max-width: 767px) {
  1723. #sec08 #sec08-title h1 {
  1724. font-weight: 900;
  1725. font-size: 32px;
  1726. }
  1727. }
  1728. #sec08 #sec08-title hr {
  1729. width: 5vw;
  1730. height: 5px;
  1731. color: #fff;
  1732. margin: 10px auto;
  1733. opacity: 1 !important;
  1734. }
  1735. @media screen and (max-width: 767px) {
  1736. #sec08 #sec08-title hr {
  1737. width: 30vw;
  1738. }
  1739. }
  1740. #sec08 #sec08-container .card {
  1741. border: none;
  1742. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1743. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1744. }
  1745. #sec08 #sec08-container .card .adv4 {
  1746. display: -webkit-box;
  1747. display: -ms-flexbox;
  1748. display: flex;
  1749. -webkit-box-align: center;
  1750. -ms-flex-align: center;
  1751. align-items: center;
  1752. }
  1753. #sec08 #sec08-container .card .adv4 img {
  1754. -webkit-box-align: center;
  1755. -ms-flex-align: center;
  1756. align-items: center;
  1757. -o-object-fit: cover;
  1758. object-fit: cover;
  1759. }
  1760. #sec08 #sec08-container .sec08-1 {
  1761. padding: 0px !important;
  1762. }
  1763. #sec08 #sec08-container .col-3 img {
  1764. padding: 40px;
  1765. -o-object-fit: cover;
  1766. object-fit: cover;
  1767. }
  1768. @media screen and (max-width: 767px) {
  1769. #sec08 #sec08-container .col-3 img {
  1770. padding: 0;
  1771. }
  1772. }
  1773. #sec09 {
  1774. background: #9d9d9d;
  1775. padding-bottom: 5vw;
  1776. }
  1777. #sec09 .col-lg-9 {
  1778. position: relative;
  1779. }
  1780. #sec09 .col-lg-9 #TRADING {
  1781. position: absolute;
  1782. right: -10px;
  1783. top: -150px;
  1784. }
  1785. #sec09 .col-lg-9 #TRADING h5 {
  1786. font-size: calc(7rem + (1.3-1.2) * ((100vw - 600px) / (1200 - 600)));
  1787. opacity: 0.8;
  1788. /* 文字的距離 */
  1789. /* 通常搭配內距左邊 */
  1790. letter-spacing: 10px;
  1791. font-weight: 900;
  1792. padding-left: 30px;
  1793. color: #414141;
  1794. }
  1795. @media screen and (max-width: 767px) {
  1796. #sec09 .col-lg-9 #TRADING h5 {
  1797. top: 200px;
  1798. font-size: 3rem;
  1799. letter-spacing: 5px;
  1800. display: none;
  1801. }
  1802. }
  1803. #sec09 #sec09-container-box {
  1804. background-size: contain;
  1805. background-repeat: no-repeat;
  1806. background-blend-mode: overlay;
  1807. }
  1808. #sec09 #sec09-title {
  1809. padding-top: 15vw;
  1810. }
  1811. #sec09 #sec09-title h1 {
  1812. color: #fff;
  1813. font-size: 45px;
  1814. font-weight: 900;
  1815. padding: 5px 10px;
  1816. }
  1817. @media screen and (max-width: 767px) {
  1818. #sec09 #sec09-title h1 {
  1819. font-weight: 900;
  1820. font-size: 32px;
  1821. }
  1822. }
  1823. #sec09 #sec09-title hr {
  1824. width: 5vw;
  1825. height: 5px;
  1826. color: #000;
  1827. margin: 10px auto;
  1828. opacity: 1 !important;
  1829. }
  1830. @media screen and (max-width: 767px) {
  1831. #sec09 #sec09-title hr {
  1832. width: 30vw;
  1833. }
  1834. }
  1835. #sec09 #sec09-container .card {
  1836. padding-top: 5vw;
  1837. padding-bottom: 5vw;
  1838. border: none;
  1839. }
  1840. #sec09 #sec09-container .card .adv4 {
  1841. display: -webkit-box;
  1842. display: -ms-flexbox;
  1843. display: flex;
  1844. -webkit-box-align: center;
  1845. -ms-flex-align: center;
  1846. align-items: center;
  1847. }
  1848. #sec09 #sec09-container .card .adv4 img {
  1849. -webkit-box-align: center;
  1850. -ms-flex-align: center;
  1851. align-items: center;
  1852. }
  1853. #sec09 #sec09-container .col-3 {
  1854. margin: 10px 0;
  1855. }
  1856. @media screen and (max-width: 1025px) {
  1857. #sec09 #sec09-container .col-3 {
  1858. padding: 15px;
  1859. }
  1860. }
  1861. @media screen and (max-width: 767px) {
  1862. #sec09 #sec09-container .col-3 {
  1863. padding: 5px;
  1864. }
  1865. }
  1866. #sec09 #sec09-container .col-3 img {
  1867. -o-object-fit: cover;
  1868. object-fit: cover;
  1869. }
  1870. @media screen and (max-width: 767px) {
  1871. #sec09 #sec09-container .col-3 img {
  1872. padding: 0px;
  1873. }
  1874. }
  1875. #sec09 #sec09-container .sec09-1 {
  1876. padding: 70px;
  1877. }
  1878. @media screen and (max-width: 767px) {
  1879. #sec09 #sec09-container .sec09-1 {
  1880. padding: 20px;
  1881. }
  1882. }
  1883. #footer {
  1884. width: 100vw;
  1885. text-align: center;
  1886. line-height: 2;
  1887. background: #313131;
  1888. color: #fff;
  1889. padding-bottom: 3vw !important;
  1890. }
  1891. #footer .footer-link {
  1892. padding-top: 3vw;
  1893. }
  1894. #footer .footer-link a {
  1895. text-decoration: none;
  1896. font-size: 20px;
  1897. padding: 10px;
  1898. color: #fff;
  1899. }
  1900. @media screen and (max-width: 767px) {
  1901. #footer .footer-link a {
  1902. font-size: 14px;
  1903. padding: 0 !important;
  1904. }
  1905. }
  1906. @media screen and (max-width: 400px) {
  1907. #footer .footer-link a {
  1908. font-size: 12px;
  1909. }
  1910. }
  1911. #footer .footer-link a span {
  1912. font-size: 28px;
  1913. }
  1914. @media screen and (max-width: 767px) {
  1915. #footer .footer-link a span {
  1916. font-size: 16px;
  1917. }
  1918. }
  1919. @media screen and (max-width: 350px) {
  1920. #footer .footer-link a span {
  1921. font-size: 14px;
  1922. }
  1923. }
  1924. #footer .text {
  1925. padding-top: 3vw;
  1926. }
  1927. #footer .text a {
  1928. text-decoration: none;
  1929. color: #fff;
  1930. }
  1931. #footer .text h2 {
  1932. font-size: 20px;
  1933. margin: 10px;
  1934. letter-spacing: 1px;
  1935. display: inline;
  1936. }
  1937. @media screen and (max-width: 767px) {
  1938. #footer .text h2 {
  1939. display: block;
  1940. font-size: 16px;
  1941. margin: 8px;
  1942. }
  1943. }
  1944. #footer .text p {
  1945. margin: 0 !important;
  1946. }
  1947. /*# sourceMappingURL=style.css.map */