style.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883
  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. #Navigation .link2,
  69. #Navigation .link3 {
  70. padding: 4vw 1vw 2vw 1vw;
  71. }
  72. @media screen and (max-width: 767px) {
  73. #Navigation #link,
  74. #Navigation .link2,
  75. #Navigation .link3 {
  76. display: none;
  77. }
  78. }
  79. #Navigation #link a,
  80. #Navigation .link2 a,
  81. #Navigation .link3 a {
  82. text-decoration: none;
  83. color: #fff;
  84. letter-spacing: 1px;
  85. font-size: 0.9rem;
  86. font-weight: 600;
  87. cursor: pointer;
  88. padding: 15px;
  89. position: relative;
  90. }
  91. #Navigation #link a :hover,
  92. #Navigation .link2 a :hover,
  93. #Navigation .link3 a :hover {
  94. opacity: 0.8;
  95. }
  96. #Navigation #link a:after,
  97. #Navigation .link2 a:after,
  98. #Navigation .link3 a:after {
  99. content: "";
  100. display: block;
  101. width: 80%;
  102. height: 3px;
  103. background-color: #fff;
  104. position: absolute;
  105. left: 12%;
  106. bottom: 0;
  107. -webkit-transition: all 0.3s;
  108. transition: all 0.3s;
  109. opacity: 0;
  110. }
  111. @media screen and (max-width: 767px) {
  112. #Navigation #link a:after,
  113. #Navigation .link2 a:after,
  114. #Navigation .link3 a:after {
  115. display: none;
  116. }
  117. }
  118. #Navigation #link a:hover:after,
  119. #Navigation .link2 a:hover:after,
  120. #Navigation .link3 a:hover:after {
  121. width: 80%;
  122. opacity: 1;
  123. }
  124. @media screen and (max-width: 1024px) {
  125. #Navigation #link a,
  126. #Navigation .link2 a,
  127. #Navigation .link3 a {
  128. padding: 5px;
  129. padding-top: 2vw;
  130. }
  131. }
  132. #Navigation .link2 {
  133. padding: 2vw 1vw 2vw 1vw;
  134. }
  135. @media screen and (max-width: 767px) {
  136. #Navigation .link2 {
  137. display: inline;
  138. }
  139. }
  140. #Navigation .link3 {
  141. padding: 4vw 1vw 1vw 0.5vw;
  142. }
  143. #Navigation #socail-link {
  144. padding: 4vw 5vw 2vw 1vw;
  145. text-align: right;
  146. }
  147. @media screen and (max-width: 767px) {
  148. #Navigation #socail-link {
  149. display: none;
  150. }
  151. }
  152. #Navigation #socail-link img {
  153. width: 30px;
  154. margin: 0 10px;
  155. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  156. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  157. -webkit-transition: 0.3s;
  158. transition: 0.3s;
  159. }
  160. #Navigation #socail-link img:hover {
  161. -webkit-filter: invert(14%) sepia(5%) saturate(8%) hue-rotate(320deg) brightness(95%) contrast(84%);
  162. filter: invert(14%) sepia(5%) saturate(8%) hue-rotate(320deg) brightness(95%) contrast(84%);
  163. }
  164. #Navigation #menu-btn1 {
  165. position: absolute;
  166. right: 2vw;
  167. top: 8vw;
  168. width: 15vw;
  169. z-index: 6;
  170. }
  171. @media screen and (min-width: 1025px) {
  172. #Navigation #menu-btn1 {
  173. display: none;
  174. }
  175. }
  176. @media screen and (min-width: 768px) {
  177. #Navigation #menu-btn1 {
  178. display: none;
  179. }
  180. }
  181. .menu-box {
  182. width: 40vw;
  183. right: 0px;
  184. position: fixed;
  185. z-index: 20;
  186. overflow: hidden;
  187. display: none;
  188. }
  189. @media screen and (min-width: 1025px) {
  190. .menu-box {
  191. display: none;
  192. }
  193. }
  194. .menu-box hr {
  195. margin: 5px auto !important;
  196. width: 25vw;
  197. background: #fff;
  198. opacity: 1 !important;
  199. }
  200. .menu-box .menu-box2 {
  201. padding-bottom: 5vw;
  202. position: relative;
  203. width: 40vw;
  204. background-color: #313131;
  205. z-index: 7;
  206. text-align: center;
  207. }
  208. .menu-box .menu-box2 .close {
  209. padding: 30px 15px 15px 15px;
  210. }
  211. .menu-box .menu-box2 a {
  212. display: inline-block;
  213. text-decoration: none;
  214. color: #fff;
  215. font-size: 14px;
  216. font-weight: 900;
  217. text-align: center;
  218. padding: 0 !important;
  219. }
  220. #banner {
  221. width: 100vw;
  222. display: inline-block;
  223. background: url(./img/banner2.jpg), linear-gradient(75deg, rgba(0, 0, 0, 0.52) 35%, transparent 30%);
  224. background-position: center center;
  225. background-size: cover;
  226. background-blend-mode: overlay;
  227. }
  228. @media screen and (max-width: 767px) {
  229. #banner {
  230. background: url(./img/mobile-banner1.jpg);
  231. }
  232. }
  233. #banner #banner-container {
  234. width: 80vw;
  235. margin: 50px auto;
  236. padding-bottom: 5vw;
  237. }
  238. @media screen and (max-width: 767px) {
  239. #banner #banner-container {
  240. width: 100vw;
  241. padding-bottom: 10vw;
  242. }
  243. }
  244. #banner #banner-container .youtube {
  245. width: 80vw;
  246. padding-top: 10vw;
  247. margin: 0 auto;
  248. color: #fff;
  249. }
  250. #banner #banner-container .youtube a {
  251. text-decoration: none;
  252. color: #fff;
  253. }
  254. @media screen and (max-width: 767px) {
  255. #banner #banner-container .youtube {
  256. padding-top: 10vw;
  257. width: 95vw;
  258. }
  259. }
  260. #banner #banner-container .youtube #youtube-text h1 {
  261. font-size: 40px;
  262. text-align: left;
  263. }
  264. @media screen and (max-width: 767px) {
  265. #banner #banner-container .youtube #youtube-text h1 {
  266. font-size: 30px;
  267. margin: 0;
  268. }
  269. }
  270. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  271. width: 380px;
  272. }
  273. @media screen and (max-width: 767px) {
  274. #banner #banner-container .youtube #youtube-text .youtube-text-title1 {
  275. width: 80vw;
  276. }
  277. }
  278. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  279. width: 350px;
  280. }
  281. @media screen and (max-width: 767px) {
  282. #banner #banner-container .youtube #youtube-text .youtube-text-title2 {
  283. width: 80vw;
  284. }
  285. }
  286. #banner #banner-container .youtube #youtube-text p {
  287. width: 350px;
  288. }
  289. @media screen and (max-width: 767px) {
  290. #banner #banner-container .youtube #youtube-text p {
  291. width: 80vw;
  292. }
  293. }
  294. #banner #banner-container .youtube hr {
  295. width: 12vw;
  296. height: 2px;
  297. color: #fff;
  298. margin: 20px 0px;
  299. opacity: 1 !important;
  300. }
  301. @media screen and (max-width: 767px) {
  302. #banner #banner-container .youtube hr {
  303. width: 80vw;
  304. }
  305. }
  306. #banner #banner-container .youtube .youtube-text-hr {
  307. width: 20vw;
  308. padding: 10px;
  309. }
  310. @media screen and (max-width: 767px) {
  311. #banner #banner-container .youtube .youtube-text-hr {
  312. width: 80vw;
  313. }
  314. }
  315. #banner #banner-container .youtube p {
  316. font-size: 18px;
  317. }
  318. #banner #banner-container .youtube h1 {
  319. font-size: 30px;
  320. }
  321. @media screen and (max-width: 767px) {
  322. #banner #banner-container .youtube h1 {
  323. font-size: 25px;
  324. padding: 15px 0px;
  325. }
  326. }
  327. @media screen and (max-width: 767px) {
  328. #banner #banner-container .youtube .learn-more {
  329. width: 100%;
  330. margin: 10px 0px;
  331. }
  332. }
  333. #banner #banner-container #youtube2 #youtube-text h1 {
  334. font-size: 30px;
  335. }
  336. @media screen and (max-width: 767px) {
  337. #banner #banner-container #youtube2 #youtube-text h1 {
  338. font-size: 23px;
  339. margin: 0;
  340. }
  341. }
  342. #banner #banner-container #youtube2 #youtube-text .youtube-text-title1 {
  343. width: 450px;
  344. }
  345. @media screen and (max-width: 767px) {
  346. #banner #banner-container #youtube2 #youtube-text .youtube-text-title1 {
  347. width: 80vw;
  348. }
  349. }
  350. #banner #banner-container #youtube2 #youtube-text .youtube-text-title2 {
  351. width: 450px;
  352. }
  353. @media screen and (max-width: 767px) {
  354. #banner #banner-container #youtube2 #youtube-text .youtube-text-title2 {
  355. width: 80vw;
  356. }
  357. }
  358. #banner #banner-container .youtube7-10 {
  359. width: 80vw;
  360. padding-top: 10vw;
  361. margin: 0 auto;
  362. color: #fff;
  363. }
  364. #banner #banner-container .youtube7-10 a {
  365. text-decoration: none;
  366. color: #fff;
  367. }
  368. @media screen and (max-width: 767px) {
  369. #banner #banner-container .youtube7-10 {
  370. padding-top: 10vw;
  371. width: 95vw;
  372. }
  373. }
  374. #banner #banner-container .youtube7-10 #youtube-text h1 {
  375. font-size: 40px;
  376. text-align: left;
  377. }
  378. @media screen and (max-width: 767px) {
  379. #banner #banner-container .youtube7-10 #youtube-text h1 {
  380. font-size: 30px;
  381. margin: 0;
  382. }
  383. }
  384. #banner #banner-container .youtube7-10 #youtube-text .youtube-text-title1 {
  385. width: 400px;
  386. }
  387. @media screen and (max-width: 767px) {
  388. #banner #banner-container .youtube7-10 #youtube-text .youtube-text-title1 {
  389. width: 80vw;
  390. }
  391. }
  392. #banner #banner-container .youtube7-10 #youtube-text .youtube-text-title2 {
  393. width: 380px;
  394. }
  395. @media screen and (max-width: 767px) {
  396. #banner #banner-container .youtube7-10 #youtube-text .youtube-text-title2 {
  397. width: 80vw;
  398. }
  399. }
  400. #banner #banner-container .youtube7-10 #youtube-text p {
  401. width: 380px;
  402. }
  403. @media screen and (max-width: 767px) {
  404. #banner #banner-container .youtube7-10 #youtube-text p {
  405. width: 80vw;
  406. }
  407. }
  408. #banner #banner-container .youtube7-10 hr {
  409. width: 12vw;
  410. height: 2px;
  411. color: #fff;
  412. margin: 20px 0px;
  413. opacity: 1 !important;
  414. }
  415. @media screen and (max-width: 767px) {
  416. #banner #banner-container .youtube7-10 hr {
  417. width: 80vw;
  418. }
  419. }
  420. #banner #banner-container .youtube7-10 .youtube-text-hr {
  421. width: 20vw;
  422. padding: 10px;
  423. }
  424. @media screen and (max-width: 767px) {
  425. #banner #banner-container .youtube7-10 .youtube-text-hr {
  426. width: 80vw;
  427. }
  428. }
  429. #banner #banner-container .youtube7-10 p {
  430. font-size: 18px;
  431. }
  432. #banner #banner-container .youtube7-10 h1 {
  433. font-size: 30px;
  434. }
  435. @media screen and (max-width: 767px) {
  436. #banner #banner-container .youtube7-10 h1 {
  437. font-size: 25px;
  438. padding: 15px 0px;
  439. }
  440. }
  441. @media screen and (max-width: 767px) {
  442. #banner #banner-container .youtube7-10 .learn-more {
  443. width: 100%;
  444. margin: 10px 0px;
  445. }
  446. }
  447. #banner #banner-container .contact-form-destop {
  448. text-align: center;
  449. }
  450. @media screen and (max-width: 767px) {
  451. #banner #banner-container .contact-form-destop {
  452. display: none;
  453. }
  454. }
  455. #banner #banner-container .contact-form-destop h1 {
  456. padding: 5vw 0 1vw 0;
  457. color: #fff;
  458. }
  459. @media screen and (max-width: 767px) {
  460. #banner #banner-container .contact-form-destop h1 {
  461. font-size: 20px;
  462. padding: 15px;
  463. }
  464. }
  465. #banner #banner-container .contact-form-destop #email {
  466. width: 50%;
  467. font-size: 16px;
  468. margin: 15px 0;
  469. padding: 10px 15px;
  470. border: none;
  471. height: 50px;
  472. border: 1px solid #313131;
  473. }
  474. @media screen and (max-width: 767px) {
  475. #banner #banner-container .contact-form-destop #email {
  476. display: none;
  477. }
  478. }
  479. #banner #banner-container .contact-form-destop .btn {
  480. color: #fff;
  481. width: 25%;
  482. height: 50px;
  483. margin: 15px 0px;
  484. font-size: 16px;
  485. border-radius: 0%;
  486. border: none;
  487. font-weight: 900;
  488. background: #93000a;
  489. vertical-align: top;
  490. -webkit-transition: 0.3s;
  491. transition: 0.3s;
  492. }
  493. @media screen and (max-width: 767px) {
  494. #banner #banner-container .contact-form-destop .btn {
  495. display: none;
  496. }
  497. }
  498. #banner #banner-container .contact-form-destop .btn:hover {
  499. font-size: 17px;
  500. }
  501. @media screen and (min-width: 1025px) {
  502. #banner #banner-container .contact-form-mobile {
  503. display: none;
  504. }
  505. }
  506. #banner #banner-container .contact-form-mobile h1 {
  507. text-align: center;
  508. padding: 10vw 0 1vw 0;
  509. color: #fff;
  510. font-size: 20px;
  511. }
  512. #banner #banner-container .contact-form-mobile #email-moblie {
  513. margin: 10px auto;
  514. width: 75%;
  515. padding: 10px 15px;
  516. border: none;
  517. height: 50px;
  518. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  519. background-size: 20px 15px;
  520. background-color: #fff;
  521. text-align: center;
  522. color: #313131;
  523. font-weight: 900;
  524. }
  525. @media screen and (min-width: 1025px) {
  526. #banner #banner-container .contact-form-mobile #email-moblie {
  527. display: none;
  528. }
  529. }
  530. #banner #banner-container #email-arrow {
  531. width: 15%;
  532. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  533. background-size: 10px 15px;
  534. background-color: #93000a;
  535. height: 50px;
  536. margin: 10px auto;
  537. font-size: 16px;
  538. border-radius: 0%;
  539. border: none;
  540. font-weight: 900;
  541. vertical-align: top;
  542. }
  543. @media screen and (min-width: 1025px) {
  544. #banner #banner-container #email-arrow {
  545. display: none;
  546. }
  547. }
  548. #sec01-container-viedeo .card {
  549. padding: 30px;
  550. border: none !important;
  551. }
  552. @media screen and (max-width: 767px) {
  553. #sec01-container-viedeo .card {
  554. padding: 15px;
  555. }
  556. }
  557. #sec01-container-viedeo .card h1 {
  558. padding: 15px;
  559. font-size: 40px;
  560. font-weight: 900;
  561. color: #9b9b9b;
  562. }
  563. #sec01-container-viedeo .card p {
  564. padding: 5px;
  565. font-size: 18px;
  566. margin-bottom: 0 !important;
  567. }
  568. @media screen and (max-width: 767px) {
  569. #sec01-container-viedeo .card p {
  570. padding: 0px;
  571. font-size: 16px;
  572. }
  573. }
  574. #sec01-container-viedeo .card .sec01-title {
  575. padding: 15px 0px;
  576. font-weight: 900;
  577. font-size: 22px;
  578. }
  579. @media screen and (max-width: 767px) {
  580. #sec01-container-viedeo .card .sec01-title {
  581. font-size: 18px;
  582. }
  583. }
  584. #sec01-container-viedeo .card a {
  585. text-decoration: none;
  586. color: #000;
  587. -webkit-transition: 0.3s;
  588. transition: 0.3s;
  589. cursor: pointer;
  590. }
  591. #sec01-container-viedeo .card a:hover {
  592. color: #2828ff;
  593. }
  594. #sec01-container-viedeo .card img {
  595. text-align: center;
  596. width: 35vw;
  597. height: 240px;
  598. -o-object-fit: cover;
  599. object-fit: cover;
  600. }
  601. @media screen and (max-width: 767px) {
  602. #sec01-container-viedeo .card img {
  603. width: 85vw;
  604. height: 200px;
  605. margin: 0 auto;
  606. }
  607. }
  608. #sec01 {
  609. padding-top: 5vw;
  610. }
  611. #sec01 .NEWS {
  612. width: 80vw;
  613. margin: 0 auto;
  614. margin-top: -130px;
  615. margin-bottom: 100px;
  616. }
  617. @media screen and (max-width: 767px) {
  618. #sec01 .NEWS {
  619. margin-top: -70px;
  620. width: 90vw;
  621. }
  622. }
  623. #sec01 .NEWS h1 {
  624. padding: 0;
  625. margin: 0;
  626. font-weight: 900;
  627. color: #fff;
  628. letter-spacing: 3px;
  629. font-size: 60px;
  630. }
  631. @media screen and (max-width: 767px) {
  632. #sec01 .NEWS h1 {
  633. font-size: 50px;
  634. }
  635. }
  636. #sec01 #sec01-container {
  637. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  638. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  639. margin: 0 auto !important;
  640. }
  641. @media screen and (max-width: 767px) {
  642. #sec01 #sec01-container {
  643. width: 90vw;
  644. margin: 0 auto;
  645. }
  646. }
  647. #sec01 #sec01-container #sec01-container-card .card {
  648. padding: 30px;
  649. border: none !important;
  650. }
  651. @media screen and (max-width: 767px) {
  652. #sec01 #sec01-container #sec01-container-card .card {
  653. padding: 15px;
  654. }
  655. }
  656. #sec01 #sec01-container #sec01-container-card .card h1 {
  657. padding: 20px;
  658. font-size: 48px;
  659. font-weight: 900;
  660. color: #9b9b9b;
  661. }
  662. @media screen and (max-width: 767px) {
  663. #sec01 #sec01-container #sec01-container-card .card h1 {
  664. padding: 5px;
  665. }
  666. }
  667. #sec01 #sec01-container #sec01-container-card .card p {
  668. padding: 5px;
  669. font-size: 18px;
  670. margin-bottom: 0 !important;
  671. }
  672. @media screen and (max-width: 767px) {
  673. #sec01 #sec01-container #sec01-container-card .card p {
  674. padding: 0px;
  675. font-size: 16px;
  676. }
  677. }
  678. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  679. padding: 15px 0px;
  680. font-weight: 900;
  681. font-size: 22px;
  682. }
  683. @media screen and (max-width: 767px) {
  684. #sec01 #sec01-container #sec01-container-card .card .sec01-title {
  685. font-size: 18px;
  686. }
  687. }
  688. #sec01 #sec01-container #sec01-container-card .card h5 {
  689. font-size: 22px;
  690. }
  691. @media screen and (max-width: 767px) {
  692. #sec01 #sec01-container #sec01-container-card .card h5 {
  693. font-size: 20px;
  694. }
  695. }
  696. #sec01 #sec01-container #sec01-container-card .card a {
  697. text-decoration: none;
  698. color: #000;
  699. -webkit-transition: 0.3s;
  700. transition: 0.3s;
  701. cursor: pointer;
  702. font-size: 22px;
  703. }
  704. #sec01 #sec01-container #sec01-container-card .card a:hover {
  705. color: #2828ff;
  706. }
  707. #sec01 #sec01-container #sec01-container-card .card img {
  708. text-align: center;
  709. width: 35vw;
  710. height: 240px;
  711. -o-object-fit: cover;
  712. object-fit: cover;
  713. }
  714. @media screen and (max-width: 767px) {
  715. #sec01 #sec01-container #sec01-container-card .card img {
  716. width: 85vw;
  717. height: auto;
  718. margin: 0 auto;
  719. }
  720. }
  721. #video {
  722. width: 100vw;
  723. padding-bottom: 10vw;
  724. text-align: center;
  725. background-position: center center;
  726. background-size: cover;
  727. }
  728. #video video {
  729. width: 80vw;
  730. margin: 0 auto;
  731. }
  732. #sec-img-adv {
  733. width: 100vw;
  734. }
  735. .wrap {
  736. text-align: center;
  737. width: 100vw;
  738. }
  739. .wrap .adv-banner {
  740. width: 100%;
  741. height: 55vw;
  742. position: relative;
  743. overflow: hidden;
  744. display: -webkit-box;
  745. display: -ms-flexbox;
  746. display: flex;
  747. -webkit-box-pack: center;
  748. -ms-flex-pack: center;
  749. justify-content: center;
  750. -webkit-box-align: center;
  751. -ms-flex-align: center;
  752. align-items: center;
  753. }
  754. @media screen and (max-width: 767px) {
  755. .wrap .adv-banner {
  756. height: 35vh;
  757. }
  758. }
  759. .wrap .adv-banner video {
  760. position: absolute;
  761. width: 100%;
  762. height: 100%;
  763. top: 0;
  764. left: 0;
  765. -o-object-fit: cover;
  766. object-fit: cover;
  767. }
  768. @media screen and (max-width: 767px) {
  769. #sec-works {
  770. margin: 10px;
  771. }
  772. }
  773. #sec-works .sec-work-container {
  774. width: 85vw;
  775. }
  776. @media screen and (max-width: 767px) {
  777. #sec-works .sec-work-container {
  778. width: 80vw;
  779. }
  780. }
  781. #sec-works #sec-work-box .work-box {
  782. margin: 10px;
  783. }
  784. #sec-works #sec-work-box .work-box .card {
  785. height: 850px;
  786. text-align: center;
  787. display: inline-block !important;
  788. -webkit-transition: 0.3s;
  789. transition: 0.3s;
  790. }
  791. #sec-works #sec-work-box .work-box .card:hover {
  792. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  793. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  794. }
  795. #sec-works .sec-work-title {
  796. margin-top: -120px;
  797. margin-bottom: 50px;
  798. color: #fff;
  799. }
  800. #sec-works .sec-work-title h1 {
  801. font-size: 60px;
  802. font-weight: 900;
  803. padding: 15px;
  804. }
  805. #sec02 {
  806. background: #414141;
  807. padding: 3vw;
  808. }
  809. @media screen and (max-width: 767px) {
  810. #sec02 {
  811. display: none;
  812. }
  813. }
  814. #sec02 #sec02-container {
  815. width: 90vw;
  816. padding: 15px;
  817. font-weight: 900;
  818. color: #fff;
  819. position: relative;
  820. }
  821. #sec02 #sec02-container #sec02-top-box {
  822. position: relative;
  823. }
  824. #sec02 #sec02-container #sec02-top-box #sec02-content {
  825. position: absolute;
  826. top: 10px;
  827. left: 300px;
  828. }
  829. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  830. color: #000;
  831. width: 13vw;
  832. }
  833. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  834. display: inline;
  835. width: 150px;
  836. height: 200px;
  837. -o-object-fit: cover;
  838. object-fit: cover;
  839. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  840. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  841. }
  842. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text h1 {
  843. font-size: 50px;
  844. }
  845. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  846. font-size: 30px;
  847. }
  848. #sec02-moblie {
  849. background: #414141;
  850. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  851. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  852. padding-top: 3vw;
  853. padding-bottom: 10vw;
  854. }
  855. @media screen and (min-width: 1025px) {
  856. #sec02-moblie {
  857. display: none;
  858. }
  859. }
  860. #sec02-moblie #sec02-container {
  861. padding: 15px;
  862. font-weight: 900;
  863. color: #fff;
  864. width: 100vw;
  865. }
  866. #sec02-moblie #sec02-container .sec02-top1-box h1 {
  867. font-size: 40px;
  868. padding: 3vw 0;
  869. }
  870. #sec02-moblie #sec02-container .sec02-top1-box img {
  871. width: 80px;
  872. }
  873. #sec02-moblie #sec02-container .sec02-top1-box span {
  874. font-size: 30px;
  875. }
  876. #sec02-moblie #sec02-container .sec02-top1-box .sec02-top-text {
  877. text-align: center;
  878. }
  879. #sec02-moblie #sec02-container #sec02-top-box {
  880. width: 95vw;
  881. margin: 5px;
  882. }
  883. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  884. color: #000;
  885. }
  886. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  887. width: 100px;
  888. height: 130px;
  889. }
  890. @media screen and (max-width: 350px) {
  891. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  892. width: 100px;
  893. height: 130px;
  894. }
  895. }
  896. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  897. width: 80px;
  898. height: 120px;
  899. }
  900. @media screen and (max-width: 350px) {
  901. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  902. width: 70px;
  903. height: 100px;
  904. }
  905. }
  906. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  907. font-size: 12px;
  908. text-align: left;
  909. }
  910. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  911. font-size: 30px;
  912. }
  913. @media screen and (max-width: 350px) {
  914. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  915. font-size: 25px;
  916. }
  917. }
  918. #sec03 {
  919. padding-top: 15vw;
  920. padding-bottom: 5vw;
  921. }
  922. @media screen and (max-width: 767px) {
  923. #sec03 {
  924. display: none;
  925. }
  926. }
  927. #sec03 #sec03-table .sec03-table-title {
  928. font-family: 微軟正黑體;
  929. font-weight: 900;
  930. padding: 15px;
  931. font-size: 35px;
  932. }
  933. #sec03 #sec03-table .table th {
  934. font-size: 40px;
  935. display: table-cell;
  936. vertical-align: middle;
  937. }
  938. #sec03 #sec03-table .table td {
  939. padding: 15px;
  940. }
  941. #sec03 #sec03-table .table td a {
  942. text-decoration: none;
  943. color: #000;
  944. }
  945. #sec03 #sec03-table .table img {
  946. width: 50px;
  947. }
  948. #sec03 #sec03-table .table .sec03-table-text {
  949. padding: 10px;
  950. display: table-cell;
  951. vertical-align: middle;
  952. }
  953. #sec03 #sec03-table .table .sec03-table-text h1 {
  954. font-size: 20px;
  955. margin: 0;
  956. font-weight: 900;
  957. }
  958. #sec03 #sec03-table .table .sec03-table-text p {
  959. margin: 0;
  960. color: #9b9b9b;
  961. }
  962. #sec03-moblie {
  963. position: relative;
  964. }
  965. #sec03-moblie .arrow-table {
  966. position: fixed;
  967. width: 25px;
  968. right: 15px;
  969. bottom: 250px;
  970. z-index: 6;
  971. }
  972. @media screen and (max-width: 350px) {
  973. #sec03-moblie .arrow-table {
  974. right: 10px;
  975. bottom: 200px;
  976. }
  977. }
  978. #sec03-moblie .sec03-table-title,
  979. #sec03-moblie .sec03-table-title2 {
  980. font-family: 微軟正黑體;
  981. font-weight: 900;
  982. font-size: 14px;
  983. display: inline-block;
  984. color: #9b9b9b;
  985. }
  986. @media screen and (max-width: 350px) {
  987. #sec03-moblie .sec03-table-title,
  988. #sec03-moblie .sec03-table-title2 {
  989. font-size: 12px;
  990. }
  991. }
  992. #sec03-moblie .contant-toggle {
  993. display: inline-block;
  994. color: #000;
  995. padding-bottom: 10px;
  996. border-bottom: 2px solid #000;
  997. }
  998. #sec03-moblie #sec03-slider {
  999. padding-top: 5vw;
  1000. }
  1001. #sec03-moblie #sec03-slider .slick-slide img {
  1002. display: inline;
  1003. }
  1004. #sec03-moblie #sec03-slider #sec03-slider1,
  1005. #sec03-moblie #sec03-slider #sec03-slider2 {
  1006. margin-left: 10px;
  1007. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1008. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1009. }
  1010. @media screen and (max-width: 350px) {
  1011. #sec03-moblie #sec03-slider #sec03-slider1,
  1012. #sec03-moblie #sec03-slider #sec03-slider2 {
  1013. margin: 0 5px;
  1014. }
  1015. }
  1016. #sec03-moblie #sec03-slider .table th {
  1017. font-size: 40px;
  1018. display: table-cell;
  1019. vertical-align: middle;
  1020. padding: 15px;
  1021. }
  1022. @media screen and (max-width: 350px) {
  1023. #sec03-moblie #sec03-slider .table th {
  1024. font-size: 25px;
  1025. }
  1026. }
  1027. #sec03-moblie #sec03-slider .table td {
  1028. display: table-cell;
  1029. vertical-align: middle;
  1030. padding: 15px;
  1031. padding: 10px 0;
  1032. }
  1033. @media screen and (max-width: 350px) {
  1034. #sec03-moblie #sec03-slider .table td {
  1035. padding: 0px;
  1036. }
  1037. }
  1038. #sec03-moblie #sec03-slider .table td a {
  1039. text-decoration: none;
  1040. color: #000;
  1041. }
  1042. #sec03-moblie #sec03-slider .table img {
  1043. width: 50px;
  1044. }
  1045. #sec03-moblie #sec03-slider .table .sec03-table-text {
  1046. padding: 0px 0px 0px 3px;
  1047. display: table-cell;
  1048. vertical-align: middle;
  1049. }
  1050. @media screen and (max-width: 350px) {
  1051. #sec03-moblie #sec03-slider .table .sec03-table-text {
  1052. padding: 0px;
  1053. }
  1054. }
  1055. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  1056. font-size: 14px;
  1057. margin: 0;
  1058. font-weight: 900;
  1059. }
  1060. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  1061. margin: 0;
  1062. font-size: 12px;
  1063. color: #9b9b9b;
  1064. }
  1065. @media screen and (min-width: 1025px) {
  1066. #sec03-moblie {
  1067. display: none;
  1068. }
  1069. }
  1070. #sec04 {
  1071. padding-top: 5vw;
  1072. padding-bottom: 5vw;
  1073. background: #414141;
  1074. background-position: center center;
  1075. background-size: cover;
  1076. }
  1077. @media screen and (max-width: 767px) {
  1078. #sec04 {
  1079. display: none;
  1080. }
  1081. }
  1082. #sec04 .sec04-title {
  1083. padding-bottom: 1vw;
  1084. }
  1085. #sec04 .sec04-title h1 {
  1086. color: #fff;
  1087. font-size: 45px;
  1088. font-weight: 900;
  1089. padding: 10px 10px;
  1090. }
  1091. @media screen and (max-width: 767px) {
  1092. #sec04 .sec04-title h1 {
  1093. font-weight: 900;
  1094. font-size: 32px;
  1095. }
  1096. }
  1097. #sec04 .sec04-title hr {
  1098. width: 12vw;
  1099. height: 2px;
  1100. color: #fff !important;
  1101. margin: 10px;
  1102. opacity: 1 !important;
  1103. }
  1104. @media screen and (max-width: 767px) {
  1105. #sec04 .sec04-title hr {
  1106. width: 30vw;
  1107. }
  1108. }
  1109. #sec04 .learn-more {
  1110. width: 120px;
  1111. }
  1112. #sec04 #sec04-container {
  1113. background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #414141), color-stop(0%, #fff));
  1114. background: linear-gradient(180deg, #414141 30%, #fff 0%);
  1115. padding: 20px;
  1116. padding-bottom: 50px;
  1117. }
  1118. #sec04 #sec04-container .card {
  1119. padding: 5px;
  1120. border-radius: 0%;
  1121. }
  1122. #sec04 #sec04-container .card .card-title {
  1123. font-weight: 900;
  1124. }
  1125. #sec04-moblie {
  1126. padding-top: 5vw;
  1127. padding-bottom: 5vw;
  1128. background: #414141;
  1129. position: relative;
  1130. overflow: hidden;
  1131. }
  1132. #sec04-moblie .arrow-table {
  1133. position: fixed;
  1134. width: 25px;
  1135. right: 15px;
  1136. bottom: 240px;
  1137. z-index: 6;
  1138. }
  1139. @media screen and (max-width: 350px) {
  1140. #sec04-moblie .arrow-table {
  1141. right: 10px;
  1142. }
  1143. }
  1144. #sec04-moblie .sec04-button {
  1145. text-align: center;
  1146. margin-top: -50px;
  1147. width: 85vw;
  1148. }
  1149. @media screen and (min-width: 1025px) {
  1150. #sec04-moblie .sec04-button {
  1151. display: none;
  1152. }
  1153. }
  1154. #sec04-moblie .sec04-button .mouse_scroll {
  1155. display: inline-block;
  1156. margin: 0 auto;
  1157. width: 24px;
  1158. -webkit-transform: rotate(90deg);
  1159. transform: rotate(90deg);
  1160. }
  1161. #sec04-moblie .sec04-button .testright {
  1162. -webkit-transform: rotate(180deg);
  1163. transform: rotate(180deg);
  1164. }
  1165. #sec04-moblie .sec04-button .m_scroll_arrows {
  1166. display: block;
  1167. width: 5px;
  1168. height: 5px;
  1169. /* IE 9 */
  1170. -webkit-transform: rotate(45deg);
  1171. /* Chrome, Safari, Opera */
  1172. transform: rotate(45deg);
  1173. border-right: 2px solid #fff;
  1174. border-bottom: 2px solid #fff;
  1175. margin: 0 0 3px 4px;
  1176. width: 16px;
  1177. height: 16px;
  1178. }
  1179. #sec04-moblie .sec04-button .unu {
  1180. margin-top: 1px;
  1181. }
  1182. #sec04-moblie .sec04-button .unu,
  1183. #sec04-moblie .sec04-button .doi,
  1184. #sec04-moblie .sec04-button .trei {
  1185. -webkit-animation: mouse-scroll 1s infinite;
  1186. animation: mouse-scroll 1s infinite;
  1187. }
  1188. #sec04-moblie .sec04-button .unu {
  1189. -webkit-animation-delay: 0.1s;
  1190. -moz-animation-delay: 0.1s;
  1191. -webkit-animation-direction: alternate;
  1192. animation-direction: alternate;
  1193. -webkit-animation-delay: alternate;
  1194. animation-delay: alternate;
  1195. }
  1196. #sec04-moblie .sec04-button .doi {
  1197. -webkit-animation-delay: 0.2s;
  1198. -moz-animation-delay: 0.2s;
  1199. -webkit-animation-direction: alternate;
  1200. animation-delay: 0.2s;
  1201. animation-direction: alternate;
  1202. margin-top: -6px;
  1203. }
  1204. #sec04-moblie .sec04-button .trei {
  1205. -webkit-animation-delay: 0.3s;
  1206. -moz-animation-delay: 0.3s;
  1207. -webkit-animation-direction: alternate;
  1208. animation-delay: 0.3s;
  1209. animation-direction: alternate;
  1210. margin-top: -6px;
  1211. }
  1212. #sec04-moblie .sec04-button .mouse {
  1213. height: 42px;
  1214. width: 24px;
  1215. border-radius: 14px;
  1216. -webkit-transform: none;
  1217. transform: none;
  1218. border: 2px solid #fff;
  1219. top: 170px;
  1220. }
  1221. #sec04-moblie .sec04-button .wheel {
  1222. height: 5px;
  1223. width: 2px;
  1224. display: block;
  1225. margin: 5px auto;
  1226. background: #fff;
  1227. position: relative;
  1228. height: 4px;
  1229. width: 4px;
  1230. border: 2px solid #fff;
  1231. border-radius: 8px;
  1232. }
  1233. #sec04-moblie .sec04-button .wheel {
  1234. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1235. animation: mouse-wheel 0.8s linear infinite;
  1236. }
  1237. @-webkit-keyframes mouse-wheel {
  1238. 0% {
  1239. opacity: 1;
  1240. -webkit-transform: translateY(0);
  1241. transform: translateY(0);
  1242. }
  1243. 100% {
  1244. opacity: 0;
  1245. -webkit-transform: translateY(6px);
  1246. transform: translateY(6px);
  1247. }
  1248. }
  1249. @keyframes mouse-wheel {
  1250. 0% {
  1251. top: 1px;
  1252. }
  1253. 25% {
  1254. top: 5px;
  1255. }
  1256. 50% {
  1257. top: 15px;
  1258. }
  1259. 75% {
  1260. top: 5px;
  1261. }
  1262. 100% {
  1263. top: 1px;
  1264. }
  1265. }
  1266. @-webkit-keyframes mouse-scroll {
  1267. 0% {
  1268. opacity: 0;
  1269. }
  1270. 50% {
  1271. opacity: 0.5;
  1272. }
  1273. 100% {
  1274. opacity: 1;
  1275. }
  1276. }
  1277. @keyframes mouse-scroll {
  1278. 0% {
  1279. opacity: 0;
  1280. }
  1281. 50% {
  1282. opacity: 0.5;
  1283. }
  1284. 100% {
  1285. opacity: 1;
  1286. }
  1287. }
  1288. @media screen and (min-width: 1025px) {
  1289. #sec04-moblie {
  1290. display: none;
  1291. }
  1292. }
  1293. #sec04-moblie h1 {
  1294. color: #fff;
  1295. font-size: 45px;
  1296. font-weight: 900;
  1297. padding: 5px 10px;
  1298. }
  1299. @media screen and (max-width: 767px) {
  1300. #sec04-moblie h1 {
  1301. font-weight: 900;
  1302. font-size: 32px;
  1303. }
  1304. }
  1305. #sec04-moblie hr {
  1306. width: 30vw;
  1307. height: 2px;
  1308. color: #fff;
  1309. margin: 10px;
  1310. opacity: 1 !important;
  1311. }
  1312. #sec04-moblie #sec04-moblie-container {
  1313. padding-top: 10vw;
  1314. }
  1315. #sec04-moblie #sec04-moblie-container .col {
  1316. margin: 10px;
  1317. }
  1318. #sec04-moblie #sec04-moblie-container .col .card {
  1319. border-radius: 0%;
  1320. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1321. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1322. }
  1323. #sec04-moblie #sec04-moblie-container .col .card img {
  1324. height: 150px;
  1325. -o-object-fit: cover;
  1326. object-fit: cover;
  1327. }
  1328. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  1329. font-weight: 900;
  1330. }
  1331. #sec04-moblie #sec04-moblie-container .col .card .learn-more {
  1332. width: 120px;
  1333. }
  1334. #sec05 {
  1335. width: 85vw;
  1336. margin: 0 auto;
  1337. padding-top: 5vw;
  1338. padding-bottom: 5vw;
  1339. }
  1340. @media screen and (max-width: 767px) {
  1341. #sec05 {
  1342. display: none;
  1343. }
  1344. }
  1345. #sec05 h1 {
  1346. font-size: 45px;
  1347. font-weight: 900;
  1348. padding: 15px;
  1349. }
  1350. #sec05 #sec05-container #sec05-destop-slider .slick-prev:before,
  1351. #sec05 #sec05-container #sec05-destop-slider .slick-next:before {
  1352. opacity: 0;
  1353. }
  1354. #sec05 #sec05-container #sec05-destop-slider .slick-prev,
  1355. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1356. width: 40px;
  1357. height: 40px;
  1358. content: none;
  1359. }
  1360. #sec05 #sec05-container #sec05-destop-slider .slick-prev {
  1361. background-image: url(./img/arrow-table2.png);
  1362. background-repeat: no-repeat;
  1363. left: -40px;
  1364. }
  1365. #sec05 #sec05-container #sec05-destop-slider .slick-prev:hover, #sec05 #sec05-container #sec05-destop-slider .slick-prev:focus {
  1366. background-image: url(./img/arrow-table2.png);
  1367. background-repeat: no-repeat;
  1368. }
  1369. #sec05 #sec05-container #sec05-destop-slider .slick-next {
  1370. background-image: url(./img/arrow-table.png);
  1371. background-repeat: no-repeat;
  1372. right: -50px;
  1373. }
  1374. #sec05 #sec05-container #sec05-destop-slider .slick-next:hover, #sec05 #sec05-container #sec05-destop-slider .slick-next:focus {
  1375. background-image: url(./img/arrow-table.png);
  1376. background-repeat: no-repeat;
  1377. }
  1378. #sec05 #sec05-container .col {
  1379. margin: 5px;
  1380. }
  1381. #sec05 #sec05-container .card {
  1382. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1383. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1384. }
  1385. #sec05-moblie {
  1386. padding-top: 5vw;
  1387. padding-bottom: 10vw;
  1388. overflow: hidden;
  1389. }
  1390. @media screen and (min-width: 1025px) {
  1391. #sec05-moblie {
  1392. display: none;
  1393. }
  1394. }
  1395. #sec05-moblie #sec05-moblie-container {
  1396. position: relative;
  1397. }
  1398. #sec05-moblie #sec05-moblie-container .arrow-table {
  1399. position: fixed;
  1400. width: 25px;
  1401. right: 5px;
  1402. bottom: 300px;
  1403. z-index: 6;
  1404. }
  1405. @media screen and (max-width: 350px) {
  1406. #sec05-moblie #sec05-moblie-container .arrow-table {
  1407. right: 10px;
  1408. }
  1409. }
  1410. #sec05-moblie h1 {
  1411. font-size: 45px;
  1412. font-weight: 900;
  1413. padding: 15px;
  1414. }
  1415. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1416. padding: 20px;
  1417. margin: 30px;
  1418. }
  1419. @media screen and (max-width: 400px) {
  1420. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box {
  1421. padding: 5px;
  1422. margin: 20px;
  1423. }
  1424. }
  1425. #sec05-moblie #sec05-moblie-slider .sec05-moblie-box .card {
  1426. border: none;
  1427. }
  1428. #sec05-moblie .sec05-button {
  1429. text-align: center;
  1430. margin-top: -50px;
  1431. }
  1432. #sec05-moblie .sec05-button .mouse_scroll {
  1433. display: inline-block;
  1434. margin: 0 auto;
  1435. width: 24px;
  1436. -webkit-transform: rotate(90deg);
  1437. transform: rotate(90deg);
  1438. }
  1439. #sec05-moblie .sec05-button .testright {
  1440. -webkit-transform: rotate(180deg);
  1441. transform: rotate(180deg);
  1442. }
  1443. #sec05-moblie .sec05-button .m_scroll_arrows {
  1444. display: block;
  1445. width: 5px;
  1446. height: 5px;
  1447. /* IE 9 */
  1448. -webkit-transform: rotate(45deg);
  1449. /* Chrome, Safari, Opera */
  1450. transform: rotate(45deg);
  1451. border-right: 2px solid #000;
  1452. border-bottom: 2px solid #000;
  1453. margin: 0 0 3px 4px;
  1454. width: 16px;
  1455. height: 16px;
  1456. }
  1457. #sec05-moblie .sec05-button .unu {
  1458. margin-top: 1px;
  1459. }
  1460. #sec05-moblie .sec05-button .unu,
  1461. #sec05-moblie .sec05-button .doi,
  1462. #sec05-moblie .sec05-button .trei {
  1463. -webkit-animation: mouse-scroll 1s infinite;
  1464. animation: mouse-scroll 1s infinite;
  1465. }
  1466. #sec05-moblie .sec05-button .unu {
  1467. -webkit-animation-delay: 0.1s;
  1468. -moz-animation-delay: 0.1s;
  1469. -webkit-animation-direction: alternate;
  1470. animation-direction: alternate;
  1471. -webkit-animation-delay: alternate;
  1472. animation-delay: alternate;
  1473. }
  1474. #sec05-moblie .sec05-button .doi {
  1475. -webkit-animation-delay: 0.2s;
  1476. -moz-animation-delay: 0.2s;
  1477. -webkit-animation-direction: alternate;
  1478. animation-delay: 0.2s;
  1479. animation-direction: alternate;
  1480. margin-top: -6px;
  1481. }
  1482. #sec05-moblie .sec05-button .trei {
  1483. -webkit-animation-delay: 0.3s;
  1484. -moz-animation-delay: 0.3s;
  1485. -webkit-animation-direction: alternate;
  1486. animation-delay: 0.3s;
  1487. animation-direction: alternate;
  1488. margin-top: -6px;
  1489. }
  1490. #sec05-moblie .sec05-button .mouse {
  1491. height: 42px;
  1492. width: 24px;
  1493. border-radius: 14px;
  1494. -webkit-transform: none;
  1495. transform: none;
  1496. border: 2px solid #000;
  1497. top: 170px;
  1498. }
  1499. #sec05-moblie .sec05-button .wheel {
  1500. height: 5px;
  1501. width: 2px;
  1502. display: block;
  1503. margin: 5px auto;
  1504. background: #000;
  1505. position: relative;
  1506. height: 4px;
  1507. width: 4px;
  1508. border: 2px solid #000;
  1509. border-radius: 8px;
  1510. }
  1511. #sec05-moblie .sec05-button .wheel {
  1512. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1513. animation: mouse-wheel 0.8s linear infinite;
  1514. }
  1515. @-webkit-keyframes mouse-wheel {
  1516. 0% {
  1517. opacity: 1;
  1518. -webkit-transform: translateY(0);
  1519. transform: translateY(0);
  1520. }
  1521. 100% {
  1522. opacity: 0;
  1523. -webkit-transform: translateY(6px);
  1524. transform: translateY(6px);
  1525. }
  1526. }
  1527. @keyframes mouse-wheel {
  1528. 0% {
  1529. top: 1px;
  1530. }
  1531. 25% {
  1532. top: 5px;
  1533. }
  1534. 50% {
  1535. top: 15px;
  1536. }
  1537. 75% {
  1538. top: 5px;
  1539. }
  1540. 100% {
  1541. top: 1px;
  1542. }
  1543. }
  1544. @-webkit-keyframes mouse-scroll {
  1545. 0% {
  1546. opacity: 0;
  1547. }
  1548. 50% {
  1549. opacity: 0.5;
  1550. }
  1551. 100% {
  1552. opacity: 1;
  1553. }
  1554. }
  1555. @keyframes mouse-scroll {
  1556. 0% {
  1557. opacity: 0;
  1558. }
  1559. 50% {
  1560. opacity: 0.5;
  1561. }
  1562. 100% {
  1563. opacity: 1;
  1564. }
  1565. }
  1566. #sec06 {
  1567. width: 100vw;
  1568. padding-top: 5vw;
  1569. padding-bottom: 10vw;
  1570. background: #525252;
  1571. }
  1572. @media screen and (max-width: 767px) {
  1573. #sec06 {
  1574. background: #313131;
  1575. }
  1576. }
  1577. #sec06 .sec06-button {
  1578. text-align: center;
  1579. width: 75vw;
  1580. }
  1581. @media screen and (min-width: 1025px) {
  1582. #sec06 .sec06-button {
  1583. display: none;
  1584. }
  1585. }
  1586. #sec06 .sec06-button .mouse_scroll {
  1587. display: inline-block;
  1588. margin: 0 auto;
  1589. width: 24px;
  1590. -webkit-transform: rotate(90deg);
  1591. transform: rotate(90deg);
  1592. }
  1593. #sec06 .sec06-button .testright {
  1594. -webkit-transform: rotate(180deg);
  1595. transform: rotate(180deg);
  1596. }
  1597. #sec06 .sec06-button .m_scroll_arrows {
  1598. display: block;
  1599. width: 5px;
  1600. height: 5px;
  1601. /* IE 9 */
  1602. -webkit-transform: rotate(45deg);
  1603. /* Chrome, Safari, Opera */
  1604. transform: rotate(45deg);
  1605. border-right: 2px solid #fff;
  1606. border-bottom: 2px solid #fff;
  1607. margin: 0 0 3px 4px;
  1608. width: 16px;
  1609. height: 16px;
  1610. }
  1611. #sec06 .sec06-button .unu {
  1612. margin-top: 1px;
  1613. }
  1614. #sec06 .sec06-button .unu,
  1615. #sec06 .sec06-button .doi,
  1616. #sec06 .sec06-button .trei {
  1617. -webkit-animation: mouse-scroll 1s infinite;
  1618. animation: mouse-scroll 1s infinite;
  1619. }
  1620. #sec06 .sec06-button .unu {
  1621. -webkit-animation-delay: 0.1s;
  1622. -moz-animation-delay: 0.1s;
  1623. -webkit-animation-direction: alternate;
  1624. animation-direction: alternate;
  1625. -webkit-animation-delay: alternate;
  1626. animation-delay: alternate;
  1627. }
  1628. #sec06 .sec06-button .doi {
  1629. -webkit-animation-delay: 0.2s;
  1630. -moz-animation-delay: 0.2s;
  1631. -webkit-animation-direction: alternate;
  1632. animation-delay: 0.2s;
  1633. animation-direction: alternate;
  1634. margin-top: -6px;
  1635. }
  1636. #sec06 .sec06-button .trei {
  1637. -webkit-animation-delay: 0.3s;
  1638. -moz-animation-delay: 0.3s;
  1639. -webkit-animation-direction: alternate;
  1640. animation-delay: 0.3s;
  1641. animation-direction: alternate;
  1642. margin-top: -6px;
  1643. }
  1644. #sec06 .sec06-button .mouse {
  1645. height: 42px;
  1646. width: 24px;
  1647. border-radius: 14px;
  1648. -webkit-transform: none;
  1649. transform: none;
  1650. border: 2px solid #fff;
  1651. top: 170px;
  1652. }
  1653. #sec06 .sec06-button .wheel {
  1654. height: 5px;
  1655. width: 2px;
  1656. display: block;
  1657. margin: 5px auto;
  1658. background: #fff;
  1659. position: relative;
  1660. height: 4px;
  1661. width: 4px;
  1662. border: 2px solid #fff;
  1663. border-radius: 8px;
  1664. }
  1665. #sec06 .sec06-button .wheel {
  1666. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1667. animation: mouse-wheel 0.8s linear infinite;
  1668. }
  1669. @-webkit-keyframes mouse-wheel {
  1670. 0% {
  1671. opacity: 1;
  1672. -webkit-transform: translateY(0);
  1673. transform: translateY(0);
  1674. }
  1675. 100% {
  1676. opacity: 0;
  1677. -webkit-transform: translateY(6px);
  1678. transform: translateY(6px);
  1679. }
  1680. }
  1681. @keyframes mouse-wheel {
  1682. 0% {
  1683. top: 1px;
  1684. }
  1685. 25% {
  1686. top: 5px;
  1687. }
  1688. 50% {
  1689. top: 15px;
  1690. }
  1691. 75% {
  1692. top: 5px;
  1693. }
  1694. 100% {
  1695. top: 1px;
  1696. }
  1697. }
  1698. @-webkit-keyframes mouse-scroll {
  1699. 0% {
  1700. opacity: 0;
  1701. }
  1702. 50% {
  1703. opacity: 0.5;
  1704. }
  1705. 100% {
  1706. opacity: 1;
  1707. }
  1708. }
  1709. @keyframes mouse-scroll {
  1710. 0% {
  1711. opacity: 0;
  1712. }
  1713. 50% {
  1714. opacity: 0.5;
  1715. }
  1716. 100% {
  1717. opacity: 1;
  1718. }
  1719. }
  1720. #sec06 h1 {
  1721. font-size: 45px;
  1722. font-weight: 900;
  1723. padding: 15px;
  1724. color: #fff;
  1725. }
  1726. #sec06 hr {
  1727. width: 12vw;
  1728. height: 2px;
  1729. color: #fff;
  1730. margin: 10px;
  1731. opacity: 1 !important;
  1732. }
  1733. @media screen and (max-width: 767px) {
  1734. #sec06 hr {
  1735. width: 30vw;
  1736. }
  1737. }
  1738. #sec06 #sec06-container {
  1739. width: 80vw;
  1740. }
  1741. #sec06 #sec06-container .slick-prev:before,
  1742. #sec06 #sec06-container .slick-next:before {
  1743. opacity: 0;
  1744. }
  1745. #sec06 #sec06-container .slick-prev,
  1746. #sec06 #sec06-container .slick-next {
  1747. width: 40px;
  1748. height: 40px;
  1749. content: none;
  1750. }
  1751. #sec06 #sec06-container .slick-prev {
  1752. background-image: url(./img/sec06/sec06-arrow-2.png);
  1753. background-repeat: no-repeat;
  1754. left: -40px;
  1755. }
  1756. #sec06 #sec06-container .slick-prev:hover, #sec06 #sec06-container .slick-prev:focus {
  1757. background-image: url(./img/sec06/sec06-arrow-2.png);
  1758. background-repeat: no-repeat;
  1759. }
  1760. #sec06 #sec06-container .slick-next {
  1761. background-image: url(./img/sec06/sec06-arrow.png);
  1762. background-repeat: no-repeat;
  1763. right: -50px;
  1764. }
  1765. #sec06 #sec06-container .slick-next:hover, #sec06 #sec06-container .slick-next:focus {
  1766. background-image: url(./img/sec06/sec06-arrow.png);
  1767. background-repeat: no-repeat;
  1768. }
  1769. #sec06 #sec06-container .card {
  1770. margin: 10px;
  1771. height: 500px;
  1772. display: inline-block;
  1773. border-radius: 0%;
  1774. -webkit-box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1775. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1776. }
  1777. #sec06 #sec06-container .card img {
  1778. height: 150px;
  1779. -o-object-fit: cover;
  1780. object-fit: cover;
  1781. }
  1782. #sec06 #sec06-container .card .card-title {
  1783. font-weight: 900;
  1784. font-size: 18px;
  1785. }
  1786. #sec06 #sec06-container .card .learn-more {
  1787. width: 120px;
  1788. }
  1789. #sec06 #sec06-container .learn-more {
  1790. width: 120px;
  1791. }
  1792. #sec07 {
  1793. padding-top: 5vw;
  1794. padding-bottom: 5vw;
  1795. }
  1796. @media screen and (max-width: 767px) {
  1797. #sec07 {
  1798. display: none;
  1799. }
  1800. }
  1801. #sec07 .NFT-Collections-Sales-Volume {
  1802. width: 80vw;
  1803. margin: 0 auto;
  1804. margin-top: -120px;
  1805. margin-bottom: 50px;
  1806. }
  1807. @media screen and (max-width: 767px) {
  1808. #sec07 .NFT-Collections-Sales-Volume {
  1809. display: none;
  1810. }
  1811. }
  1812. #sec07 .NFT-Collections-Sales-Volume h1 {
  1813. padding: 0;
  1814. margin: 0;
  1815. font-weight: normal;
  1816. color: #fff;
  1817. letter-spacing: 3px;
  1818. font-size: 50px;
  1819. }
  1820. #sec07 .table {
  1821. text-align: center;
  1822. }
  1823. #sec07 .table thead tr th {
  1824. border: 0;
  1825. }
  1826. #sec07 .table td {
  1827. display: table-cell;
  1828. vertical-align: middle;
  1829. text-align: left;
  1830. }
  1831. #sec07 .table td img {
  1832. width: 50px;
  1833. }
  1834. #sec07 .table td .data-line {
  1835. width: 100px;
  1836. }
  1837. #sec07 .table th {
  1838. display: table-cell;
  1839. vertical-align: middle;
  1840. text-align: left;
  1841. }
  1842. #sec07 .table img {
  1843. padding: 5px;
  1844. }
  1845. #sec07 .sec07-table-button {
  1846. text-align: right;
  1847. }
  1848. #sec07 .sec07-table-button .data-button {
  1849. text-align: left;
  1850. border-radius: 25px;
  1851. width: 10vw;
  1852. padding: 5px 20px;
  1853. color: #000;
  1854. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1855. background-size: 18px 18px;
  1856. background-color: #fff;
  1857. border: 1px solid #000;
  1858. }
  1859. #sec07-moblir-title {
  1860. background: #414141;
  1861. }
  1862. @media screen and (min-width: 1025px) {
  1863. #sec07-moblir-title {
  1864. display: none;
  1865. }
  1866. }
  1867. #sec07-moblir-title #sec07-container {
  1868. padding: 15px;
  1869. font-weight: 900;
  1870. color: #fff;
  1871. }
  1872. #sec07-moblie {
  1873. padding-top: 5vw;
  1874. padding-bottom: 5vw;
  1875. }
  1876. @media screen and (min-width: 1025px) {
  1877. #sec07-moblie {
  1878. display: none;
  1879. }
  1880. }
  1881. #sec07-moblie .table {
  1882. text-align: center;
  1883. }
  1884. #sec07-moblie .table thead tr th {
  1885. border: 0;
  1886. }
  1887. #sec07-moblie .table td {
  1888. display: table-cell;
  1889. vertical-align: middle;
  1890. text-align-last: left;
  1891. font-size: 14px;
  1892. }
  1893. #sec07-moblie .table td img {
  1894. width: 30px;
  1895. }
  1896. #sec07-moblie .table td .data-line {
  1897. width: 80px;
  1898. }
  1899. #sec07-moblie .table th {
  1900. display: table-cell;
  1901. vertical-align: middle;
  1902. text-align: left;
  1903. font-size: 14px;
  1904. }
  1905. #sec07-moblie .table img {
  1906. padding: 5px;
  1907. width: 50px;
  1908. }
  1909. #sec07-moblie .sec07-table-button {
  1910. text-align: right;
  1911. }
  1912. #sec07-moblie .sec07-table-button .data-button {
  1913. text-align: left;
  1914. border-radius: 25px;
  1915. width: 35vw;
  1916. padding: 5px 20px;
  1917. color: #000;
  1918. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1919. background-size: 18px 18px;
  1920. background-color: #fff;
  1921. border: 1px solid #000;
  1922. }
  1923. #sec08 {
  1924. padding-bottom: 5vw;
  1925. background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  1926. background: linear-gradient(180deg, #414141 35%, transparent 30%, #fff 55%);
  1927. position: relative;
  1928. }
  1929. @media screen and (max-width: 767px) {
  1930. #sec08 {
  1931. background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, #414141), color-stop(30%, transparent), color-stop(55%, #fff));
  1932. background: linear-gradient(180deg, #414141 100%, transparent 30%, #fff 55%);
  1933. padding-top: 10vw;
  1934. }
  1935. }
  1936. #sec08 #sec08-container-box {
  1937. background-size: contain;
  1938. background-repeat: no-repeat;
  1939. background-blend-mode: overlay;
  1940. }
  1941. #sec08 #sec08-title {
  1942. background: #414141;
  1943. padding-top: 5vw;
  1944. }
  1945. #sec08 #sec08-title .col-lg-9 {
  1946. position: relative;
  1947. }
  1948. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER {
  1949. position: absolute;
  1950. top: 20px;
  1951. right: 0vw;
  1952. }
  1953. @media screen and (max-width: 767px) {
  1954. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER {
  1955. top: 0px;
  1956. }
  1957. }
  1958. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER h5 {
  1959. font-size: 48px;
  1960. opacity: 0.8;
  1961. /* 文字的距離 */
  1962. /* 通常搭配內距左邊 */
  1963. text-align: center;
  1964. letter-spacing: 10px;
  1965. font-weight: 900;
  1966. color: #f5f5f5;
  1967. }
  1968. @media screen and (max-width: 767px) {
  1969. #sec08 #sec08-title .col-lg-9 #OUR-PARTNER h5 {
  1970. font-size: 20px;
  1971. letter-spacing: 5px;
  1972. text-align: left;
  1973. }
  1974. }
  1975. #sec08 #sec08-title h1 {
  1976. padding: 10px;
  1977. color: #fff;
  1978. font-size: 48px;
  1979. font-weight: 900;
  1980. }
  1981. @media screen and (max-width: 767px) {
  1982. #sec08 #sec08-title h1 {
  1983. font-weight: 900;
  1984. font-size: 32px;
  1985. padding: 0px;
  1986. }
  1987. }
  1988. #sec08 #sec08-title hr {
  1989. width: 5vw;
  1990. height: 5px;
  1991. color: #fff;
  1992. margin: 10px auto;
  1993. opacity: 1 !important;
  1994. }
  1995. @media screen and (max-width: 767px) {
  1996. #sec08 #sec08-title hr {
  1997. width: 30vw;
  1998. }
  1999. }
  2000. #sec08 #sec08-container .card {
  2001. border: none;
  2002. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2003. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2004. }
  2005. @media screen and (max-width: 767px) {
  2006. #sec08 #sec08-container .card {
  2007. padding-top: 5vw;
  2008. padding-bottom: 5vw;
  2009. }
  2010. }
  2011. #sec08 #sec08-container .card .adv4 {
  2012. display: -webkit-box;
  2013. display: -ms-flexbox;
  2014. display: flex;
  2015. -webkit-box-align: center;
  2016. -ms-flex-align: center;
  2017. align-items: center;
  2018. }
  2019. #sec08 #sec08-container .card .adv4 img {
  2020. -webkit-box-align: center;
  2021. -ms-flex-align: center;
  2022. align-items: center;
  2023. -o-object-fit: cover;
  2024. object-fit: cover;
  2025. }
  2026. #sec08 #sec08-container .sec08-1 {
  2027. padding: 0px !important;
  2028. }
  2029. #sec08 #sec08-container .col-3 img {
  2030. padding: 40px;
  2031. -o-object-fit: cover;
  2032. object-fit: cover;
  2033. }
  2034. @media screen and (max-width: 767px) {
  2035. #sec08 #sec08-container .col-3 img {
  2036. padding: 3px;
  2037. }
  2038. }
  2039. #sec09 {
  2040. background: #414141;
  2041. padding-bottom: 5vw;
  2042. }
  2043. #sec09 .col-lg-9 {
  2044. position: relative;
  2045. }
  2046. #sec09 .col-lg-9 #TRADING {
  2047. position: absolute;
  2048. right: -1px;
  2049. top: -50px;
  2050. }
  2051. @media screen and (max-width: 767px) {
  2052. #sec09 .col-lg-9 #TRADING {
  2053. top: 5px;
  2054. right: 30px;
  2055. }
  2056. }
  2057. @media screen and (max-width: 350px) {
  2058. #sec09 .col-lg-9 #TRADING {
  2059. right: 20px;
  2060. }
  2061. }
  2062. #sec09 .col-lg-9 #TRADING h5 {
  2063. font-size: 48px;
  2064. opacity: 0.8;
  2065. /* 文字的距離 */
  2066. /* 通常搭配內距左邊 */
  2067. letter-spacing: 10px;
  2068. font-weight: 900;
  2069. color: #f5f5f5;
  2070. }
  2071. @media screen and (max-width: 767px) {
  2072. #sec09 .col-lg-9 #TRADING h5 {
  2073. font-size: 20px;
  2074. letter-spacing: 5px;
  2075. text-align: left;
  2076. }
  2077. }
  2078. #sec09 #sec09-container-box {
  2079. background-size: contain;
  2080. background-repeat: no-repeat;
  2081. background-blend-mode: overlay;
  2082. }
  2083. #sec09 #sec09-title {
  2084. padding-top: 10vw;
  2085. }
  2086. #sec09 #sec09-title h1 {
  2087. color: #fff;
  2088. font-size: 48px;
  2089. font-weight: 900;
  2090. padding: 5px 10px;
  2091. }
  2092. @media screen and (max-width: 767px) {
  2093. #sec09 #sec09-title h1 {
  2094. font-weight: 900;
  2095. font-size: 32px;
  2096. padding: 5px 0px;
  2097. }
  2098. }
  2099. #sec09 #sec09-title hr {
  2100. width: 5vw;
  2101. height: 5px;
  2102. color: #000;
  2103. margin: 10px auto;
  2104. opacity: 1 !important;
  2105. }
  2106. @media screen and (max-width: 767px) {
  2107. #sec09 #sec09-title hr {
  2108. width: 30vw;
  2109. }
  2110. }
  2111. #sec09 #sec09-container .card {
  2112. background: #000;
  2113. padding-top: 5vw;
  2114. padding-bottom: 5vw;
  2115. border: none;
  2116. }
  2117. #sec09 #sec09-container .card .sec09-7 {
  2118. width: 200px;
  2119. }
  2120. #sec09 #sec09-container .card .adv4 {
  2121. display: -webkit-box;
  2122. display: -ms-flexbox;
  2123. display: flex;
  2124. -webkit-box-align: center;
  2125. -ms-flex-align: center;
  2126. align-items: center;
  2127. }
  2128. #sec09 #sec09-container .card .adv4 img {
  2129. -webkit-box-align: center;
  2130. -ms-flex-align: center;
  2131. align-items: center;
  2132. }
  2133. #sec09 #sec09-container .col-3 {
  2134. margin: 10px 0;
  2135. }
  2136. @media screen and (max-width: 1025px) {
  2137. #sec09 #sec09-container .col-3 {
  2138. padding: 15px;
  2139. }
  2140. }
  2141. @media screen and (max-width: 767px) {
  2142. #sec09 #sec09-container .col-3 {
  2143. padding: 5px;
  2144. }
  2145. }
  2146. #sec09 #sec09-container .col-3 img {
  2147. -o-object-fit: cover;
  2148. object-fit: cover;
  2149. }
  2150. @media screen and (max-width: 767px) {
  2151. #sec09 #sec09-container .col-3 img {
  2152. padding: 0px;
  2153. }
  2154. }
  2155. #sec09 #sec09-container .sec09-1 {
  2156. padding: 70px;
  2157. }
  2158. @media screen and (max-width: 767px) {
  2159. #sec09 #sec09-container .sec09-1 {
  2160. padding: 20px;
  2161. }
  2162. }
  2163. #footer {
  2164. width: 100vw;
  2165. text-align: center;
  2166. line-height: 2;
  2167. background: #313131;
  2168. color: #fff;
  2169. }
  2170. #footer .footer-link {
  2171. padding-top: 3vw;
  2172. }
  2173. #footer .footer-link a {
  2174. text-decoration: none;
  2175. font-size: 20px;
  2176. padding: 10px;
  2177. color: #fff;
  2178. }
  2179. @media screen and (max-width: 767px) {
  2180. #footer .footer-link a {
  2181. font-size: 14px;
  2182. padding: 0 !important;
  2183. }
  2184. }
  2185. @media screen and (max-width: 400px) {
  2186. #footer .footer-link a {
  2187. font-size: 12px;
  2188. }
  2189. }
  2190. #footer .footer-link a span {
  2191. font-size: 28px;
  2192. }
  2193. @media screen and (max-width: 767px) {
  2194. #footer .footer-link a span {
  2195. font-size: 16px;
  2196. }
  2197. }
  2198. @media screen and (max-width: 350px) {
  2199. #footer .footer-link a span {
  2200. font-size: 14px;
  2201. }
  2202. }
  2203. #footer .text {
  2204. padding-top: 3vw;
  2205. }
  2206. #footer .text a {
  2207. text-decoration: none;
  2208. color: #fff;
  2209. }
  2210. #footer .text h2 {
  2211. font-size: 20px;
  2212. margin: 10px;
  2213. letter-spacing: 1px;
  2214. }
  2215. @media screen and (max-width: 767px) {
  2216. #footer .text h2 {
  2217. display: block;
  2218. font-size: 16px;
  2219. margin: 8px;
  2220. }
  2221. }
  2222. #footer .text p {
  2223. margin: 0 !important;
  2224. }
  2225. #footer .text img {
  2226. width: 30px;
  2227. margin: 10px;
  2228. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  2229. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  2230. -webkit-transition: 0.3s;
  2231. transition: 0.3s;
  2232. }
  2233. #footer .text img:hover {
  2234. opacity: 0.6;
  2235. }
  2236. @media screen and (max-width: 767px) {
  2237. .adv01 .adv01-1 {
  2238. width: 100vw;
  2239. margin: 0;
  2240. }
  2241. }
  2242. .adv01 .adv01-1 img {
  2243. width: 80vw;
  2244. }
  2245. @media screen and (max-width: 767px) {
  2246. .adv01 .adv01-1 img {
  2247. width: 100vw;
  2248. }
  2249. }
  2250. #adv02 .adv01-1 {
  2251. width: 90vw;
  2252. }
  2253. @media screen and (max-width: 767px) {
  2254. #adv02 .adv01-1 {
  2255. width: 100vw;
  2256. margin: 0;
  2257. }
  2258. }
  2259. @media screen and (max-width: 767px) {
  2260. #adv02 .adv01-1 img {
  2261. width: 100vw;
  2262. }
  2263. }
  2264. #sec10 {
  2265. width: 90vw;
  2266. }
  2267. #sec10 .sec10-title {
  2268. font-size: 43px;
  2269. }
  2270. @media screen and (max-width: 767px) {
  2271. #sec10 .sec10-title {
  2272. font-size: 26px;
  2273. }
  2274. }
  2275. #sec10 hr {
  2276. height: 1px;
  2277. background: #525252;
  2278. opacity: 1;
  2279. }
  2280. #sec10 .content p {
  2281. line-height: 2;
  2282. font-size: 18px;
  2283. }
  2284. #sec10 .side-bar a {
  2285. text-decoration: none;
  2286. color: #000;
  2287. -webkit-transition: 0.3s;
  2288. transition: 0.3s;
  2289. cursor: pointer;
  2290. }
  2291. #sec10 .side-bar a:hover {
  2292. color: #2828ff;
  2293. }
  2294. #sec10 .side-bar h5 {
  2295. font-size: 20px;
  2296. font-weight: 900;
  2297. }
  2298. #sec10 .side-bar p {
  2299. font-size: 16px;
  2300. }
  2301. #sec11 #sec11-container {
  2302. width: 85vw;
  2303. }
  2304. #sec11 #sec11-container a {
  2305. text-decoration: none;
  2306. color: #000;
  2307. -webkit-transition: 0.3s;
  2308. transition: 0.3s;
  2309. cursor: pointer;
  2310. }
  2311. #sec11 #sec11-container a:hover {
  2312. color: #2828ff;
  2313. }
  2314. #sec11 #sec11-container h1 {
  2315. font-weight: 900;
  2316. font-size: 28px;
  2317. }
  2318. @media screen and (max-width: 767px) {
  2319. #sec11 #sec11-container .sec11-01 {
  2320. display: block;
  2321. }
  2322. }
  2323. #sec11 #sec11-container .col {
  2324. overflow: hidden;
  2325. }
  2326. #sec11 #sec11-container .sec11-img {
  2327. width: 550px;
  2328. height: 350px;
  2329. -o-object-fit: cover;
  2330. object-fit: cover;
  2331. -webkit-transition: 0.3s;
  2332. transition: 0.3s;
  2333. cursor: pointer;
  2334. }
  2335. #sec11 #sec11-container .sec11-img:hover {
  2336. -webkit-transform: scale(1.02);
  2337. transform: scale(1.02);
  2338. }
  2339. @media screen and (max-width: 767px) {
  2340. #sec11 #sec11-container .sec11-img {
  2341. height: 250px;
  2342. }
  2343. }
  2344. #sec11 #sec11-container h2 {
  2345. font-weight: 900;
  2346. font-size: 24px;
  2347. }
  2348. #sec13 {
  2349. background-image: url(./img/sec04banner.jpg);
  2350. background-size: cover;
  2351. }
  2352. #sec13 .left .ip-service {
  2353. width: 50vw;
  2354. padding: 30px;
  2355. margin: 0px auto;
  2356. background: #252628;
  2357. -webkit-box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
  2358. box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
  2359. color: white;
  2360. border-radius: 10px;
  2361. font-size: 16px;
  2362. }
  2363. @media screen and (max-width: 767px) {
  2364. #sec13 .left .ip-service {
  2365. width: 100vw;
  2366. margin: 0;
  2367. }
  2368. }
  2369. #sec13 .left .ip-service img {
  2370. width: 200px;
  2371. }
  2372. #sec13 .left .ip-service #name,
  2373. #sec13 .left .ip-service #email,
  2374. #sec13 .left .ip-service #phone,
  2375. #sec13 .left .ip-service #loc,
  2376. #sec13 .left .ip-service #selector1,
  2377. #sec13 .left .ip-service #work {
  2378. width: 100%;
  2379. height: 35px;
  2380. margin: 10px 0;
  2381. padding: 20px 5px;
  2382. background: #1b1c1e;
  2383. border: 1px solid rgba(0, 0, 0, 0.3);
  2384. border-radius: 5px;
  2385. }
  2386. #sec13 .left .ip-service #selector1 {
  2387. padding: 10px 5px;
  2388. background: none;
  2389. border: none;
  2390. }
  2391. #sec13 .left .ip-service .btn {
  2392. width: 200px;
  2393. margin: 30px 0px;
  2394. padding: 15px 0;
  2395. background-color: #93000a;
  2396. /* 邊框:寬度 樣式 顏色 */
  2397. border: 0 solid #000;
  2398. color: #fff;
  2399. }
  2400. #sec13 .left .ip-service .btn:hover {
  2401. color: #93000a;
  2402. background: #fff;
  2403. border: 1px solid #93000a;
  2404. }
  2405. #sec13 .right img {
  2406. margin: 0px 50px;
  2407. }
  2408. #sec13 .right h1 {
  2409. margin: 10px 50px;
  2410. color: #fff;
  2411. font-weight: 900;
  2412. font-size: 72px;
  2413. margin-bottom: 50px;
  2414. }
  2415. #sec13 .right h2 {
  2416. padding: 30px;
  2417. margin: 20px 5px;
  2418. color: #fff;
  2419. font-weight: 900;
  2420. font-size: 40px;
  2421. }
  2422. #sec13 .right ul {
  2423. color: #fff;
  2424. font-weight: 900;
  2425. font-size: 45px;
  2426. }
  2427. #sec-service {
  2428. background: #000;
  2429. padding: 5vw 0px;
  2430. }
  2431. #sec-service h5 {
  2432. font-size: 24px;
  2433. }
  2434. #sec-service p {
  2435. font-size: 20px;
  2436. }
  2437. #sec-service h1 {
  2438. text-align: center;
  2439. color: #fff;
  2440. font-weight: 900;
  2441. font-size: 72px;
  2442. }
  2443. /*# sourceMappingURL=style.css.map */