style.css 52 KB

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