style.scss 61 KB

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