style.scss 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  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: 15px;
  562. font-size: 40px;
  563. font-weight: 900;
  564. color: #9b9b9b;
  565. }
  566. p {
  567. padding: 5px;
  568. font-size: 18px;
  569. margin-bottom: 0 !important;
  570. @media screen and(max-width:$moblie) {
  571. padding: 0px;
  572. font-size: 16px;
  573. }
  574. }
  575. .sec01-title {
  576. padding: 15px 0px;
  577. font-weight: 900;
  578. font-size: 22px;
  579. @media screen and(max-width:$moblie) {
  580. font-size: 18px;
  581. }
  582. }
  583. a {
  584. text-decoration: none;
  585. color: #000;
  586. transition: 0.3s;
  587. cursor: pointer;
  588. &:hover {
  589. color: #2828ff;
  590. }
  591. }
  592. img {
  593. text-align: center;
  594. width: 35vw;
  595. height: 240px;
  596. object-fit: cover;
  597. @media screen and(max-width:$moblie) {
  598. width: 85vw;
  599. height: 200px;
  600. margin: 0 auto;
  601. }
  602. }
  603. }
  604. }
  605. }
  606. }
  607. // 影片區塊
  608. #video {
  609. width: 100vw;
  610. padding-bottom: 10vw;
  611. text-align: center;
  612. // background: url(./img/sec04banner.jpg);
  613. background-position: center center;
  614. background-size: cover;
  615. video {
  616. width: 80vw;
  617. margin: 0 auto;
  618. }
  619. }
  620. #sec-img-adv {
  621. width: 100vw;
  622. }
  623. .wrap {
  624. text-align: center;
  625. width: 100vw;
  626. .adv-banner {
  627. width: 100%;
  628. height: 55vw;
  629. position: relative;
  630. overflow: hidden;
  631. display: flex;
  632. justify-content: center;
  633. align-items: center;
  634. @media screen and(max-width:$moblie) {
  635. height: 35vh;
  636. }
  637. }
  638. .adv-banner video {
  639. position: absolute;
  640. width: 100%;
  641. height: 100%;
  642. top: 0;
  643. left: 0;
  644. object-fit: cover;
  645. }
  646. }
  647. // 活動作品集
  648. #sec-works {
  649. @media screen and(max-width:$moblie) {
  650. margin: 10px;
  651. }
  652. .sec-work-container {
  653. width: 85vw;
  654. @media screen and(max-width:$moblie) {
  655. width: 80vw;
  656. }
  657. }
  658. #sec-work-box {
  659. .work-box {
  660. margin: 10px;
  661. .card {
  662. height: 850px;
  663. text-align: center;
  664. display: inline-block !important;
  665. transition: 0.3s;
  666. &:hover {
  667. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  668. }
  669. }
  670. }
  671. }
  672. .sec-work-title {
  673. margin-top: -120px;
  674. margin-bottom: 50px;
  675. color:#fff;
  676. h1 {
  677. font-size: 60px;
  678. font-weight: 900;
  679. padding: 15px;
  680. }
  681. }
  682. }
  683. // sec02 TOP排名 電腦版
  684. #sec02 {
  685. background: #414141;
  686. padding: 3vw;
  687. @media screen and(max-width:$moblie) {
  688. display: none;
  689. }
  690. #sec02-container {
  691. width: 90vw;
  692. padding: 15px;
  693. font-weight: 900;
  694. color: #fff;
  695. position: relative;
  696. // 電腦版top圖片排行
  697. #sec02-top-box {
  698. position: relative;
  699. #sec02-content {
  700. position: absolute;
  701. top: 10px;
  702. left: 300px;
  703. }
  704. .sec02-box1 {
  705. color: #000;
  706. width: 13vw;
  707. img {
  708. display: inline;
  709. width: 150px;
  710. height: 200px;
  711. object-fit: cover;
  712. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  713. }
  714. .sec02-top-text {
  715. h1 {
  716. font-size: 50px;
  717. }
  718. span {
  719. font-size: 30px;
  720. }
  721. }
  722. }
  723. }
  724. }
  725. }
  726. // sec02 top排名手機板
  727. #sec02-moblie {
  728. background: #414141;
  729. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  730. padding-top: 3vw;
  731. padding-bottom: 10vw;
  732. @media screen and(min-width:$desktop) {
  733. display: none;
  734. }
  735. #sec02-container {
  736. padding: 15px;
  737. font-weight: 900;
  738. color: #fff;
  739. width: 100vw;
  740. .sec02-top1-box {
  741. h1 {
  742. font-size: 40px;
  743. padding: 3vw 0;
  744. }
  745. img {
  746. width: 80px;
  747. }
  748. span {
  749. font-size: 30px;
  750. }
  751. .sec02-top-text {
  752. text-align: center;
  753. }
  754. }
  755. #sec02-top-box {
  756. width: 95vw;
  757. margin: 5px;
  758. .sec02-box1 {
  759. color: #000;
  760. #top1 {
  761. width: 100px;
  762. height: 130px;
  763. @media screen and(max-width:350px) {
  764. width: 100px;
  765. height: 130px;
  766. }
  767. }
  768. img {
  769. width: 80px;
  770. height: 120px;
  771. @media screen and(max-width:350px) {
  772. width: 70px;
  773. height: 100px;
  774. }
  775. }
  776. .sec02-top-text {
  777. font-size: 12px;
  778. text-align: left;
  779. @media screen and(max-width:350px) {
  780. }
  781. span {
  782. font-size: 30px;
  783. @media screen and(max-width:350px) {
  784. font-size: 25px;
  785. }
  786. }
  787. }
  788. }
  789. }
  790. }
  791. }
  792. // sec03 排名table-電腦版
  793. #sec03 {
  794. padding-top: 15vw;
  795. padding-bottom: 5vw;
  796. @media screen and(max-width:$moblie) {
  797. display: none;
  798. }
  799. #sec03-table {
  800. .sec03-table-title {
  801. font-family: 微軟正黑體;
  802. font-weight: 900;
  803. padding: 15px;
  804. font-size: 35px;
  805. }
  806. .table {
  807. th {
  808. font-size: 40px;
  809. display: table-cell;
  810. vertical-align: middle;
  811. }
  812. td {
  813. padding: 15px;
  814. a {
  815. text-decoration: none;
  816. color: #000;
  817. }
  818. }
  819. img {
  820. width: 50px;
  821. }
  822. .sec03-table-text {
  823. padding: 10px;
  824. display: table-cell;
  825. vertical-align: middle;
  826. h1 {
  827. font-size: 20px;
  828. margin: 0;
  829. font-weight: 900;
  830. }
  831. p {
  832. margin: 0;
  833. color: #9b9b9b;
  834. }
  835. }
  836. }
  837. }
  838. }
  839. // sec03排名table-手機板
  840. #sec03-moblie {
  841. position: relative;
  842. .arrow-table {
  843. position: fixed;
  844. width: 25px;
  845. right: 15px;
  846. bottom: 250px;
  847. z-index: 6;
  848. @media screen and(max-width:350px) {
  849. right: 10px;
  850. bottom: 200px;
  851. }
  852. }
  853. .sec03-table-title,
  854. .sec03-table-title2 {
  855. font-family: 微軟正黑體;
  856. font-weight: 900;
  857. font-size: 14px;
  858. display: inline-block;
  859. color: #9b9b9b;
  860. @media screen and(max-width:350px) {
  861. font-size: 12px;
  862. }
  863. }
  864. .contant-toggle {
  865. display: inline-block;
  866. color: #000;
  867. padding-bottom: 10px;
  868. border-bottom: 2px solid #000;
  869. }
  870. #sec03-slider {
  871. padding-top: 5vw;
  872. .slick-slide img {
  873. display: inline;
  874. }
  875. #sec03-slider1,
  876. #sec03-slider2 {
  877. margin-left: 10px;
  878. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  879. @media screen and(max-width:350px) {
  880. margin: 0 5px;
  881. }
  882. }
  883. .table {
  884. th {
  885. font-size: 40px;
  886. display: table-cell;
  887. vertical-align: middle;
  888. padding: 15px;
  889. @media screen and(max-width:350px) {
  890. font-size: 25px;
  891. }
  892. }
  893. td {
  894. display: table-cell;
  895. vertical-align: middle;
  896. padding: 15px;
  897. padding: 10px 0;
  898. @media screen and(max-width:350px) {
  899. padding: 0px;
  900. }
  901. a {
  902. text-decoration: none;
  903. color: #000;
  904. }
  905. }
  906. img {
  907. width: 50px;
  908. }
  909. .sec03-table-text {
  910. padding: 0px 0px 0px 3px;
  911. display: table-cell;
  912. vertical-align: middle;
  913. @media screen and(max-width:350px) {
  914. padding: 0px;
  915. }
  916. h1 {
  917. font-size: 14px;
  918. margin: 0;
  919. font-weight: 900;
  920. }
  921. p {
  922. margin: 0;
  923. font-size: 12px;
  924. color: #9b9b9b;
  925. }
  926. }
  927. }
  928. }
  929. @media screen and(min-width:$desktop) {
  930. display: none;
  931. }
  932. }
  933. // sec04 洞察報告 電腦版
  934. #sec04 {
  935. padding-top: 5vw;
  936. padding-bottom: 5vw;
  937. background: #414141;
  938. background-position: center center;
  939. background-size: cover;
  940. @media screen and(max-width:$moblie) {
  941. display: none;
  942. }
  943. .sec04-title {
  944. padding-bottom: 1vw;
  945. h1 {
  946. color: #fff;
  947. font-size: 45px;
  948. font-weight: 900;
  949. padding: 10px 10px;
  950. @media screen and(max-width:$moblie) {
  951. font-weight: 900;
  952. font-size: 32px;
  953. }
  954. }
  955. hr {
  956. width: 12vw;
  957. height: 2px;
  958. color: #fff !important;
  959. margin: 10px;
  960. opacity: 1 !important;
  961. @media screen and(max-width:$moblie) {
  962. width: 30vw;
  963. }
  964. }
  965. }
  966. .learn-more {
  967. width: 120px;
  968. }
  969. #sec04-container {
  970. background: linear-gradient(180deg, #414141 30%, #fff 0%);
  971. // background: rgba(0,0,0,0.72);
  972. padding: 20px;
  973. padding-bottom: 50px;
  974. .card {
  975. padding: 5px;
  976. border-radius: 0%;
  977. .card-title {
  978. font-weight: 900;
  979. }
  980. }
  981. }
  982. }
  983. // sec04洞察報告 手機板
  984. #sec04-moblie {
  985. padding-top: 5vw;
  986. padding-bottom: 5vw;
  987. background: #414141;
  988. position: relative;
  989. overflow: hidden;
  990. .arrow-table {
  991. position: fixed;
  992. width: 25px;
  993. right: 15px;
  994. bottom: 240px;
  995. z-index: 6;
  996. @media screen and(max-width:350px) {
  997. right: 10px;
  998. }
  999. }
  1000. .sec04-button {
  1001. text-align: center;
  1002. margin-top: -50px;
  1003. width: 85vw;
  1004. @media screen and(min-width:$desktop) {
  1005. display: none;
  1006. }
  1007. .mouse_scroll {
  1008. display: inline-block;
  1009. margin: 0 auto;
  1010. width: 24px;
  1011. transform: rotate(90deg);
  1012. }
  1013. .testright {
  1014. transform: rotate(180deg);
  1015. }
  1016. .m_scroll_arrows {
  1017. display: block;
  1018. width: 5px;
  1019. height: 5px;
  1020. -ms-transform: rotate(45deg); /* IE 9 */
  1021. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1022. transform: rotate(45deg);
  1023. border-right: 2px solid #fff;
  1024. border-bottom: 2px solid #fff;
  1025. margin: 0 0 3px 4px;
  1026. width: 16px;
  1027. height: 16px;
  1028. }
  1029. .unu {
  1030. margin-top: 1px;
  1031. }
  1032. .unu,
  1033. .doi,
  1034. .trei {
  1035. -webkit-animation: mouse-scroll 1s infinite;
  1036. -moz-animation: mouse-scroll 1s infinite;
  1037. animation: mouse-scroll 1s infinite;
  1038. }
  1039. .unu {
  1040. -webkit-animation-delay: 0.1s;
  1041. -moz-animation-delay: 0.1s;
  1042. -webkit-animation-direction: alternate;
  1043. animation-direction: alternate;
  1044. animation-delay: alternate;
  1045. }
  1046. .doi {
  1047. -webkit-animation-delay: 0.2s;
  1048. -moz-animation-delay: 0.2s;
  1049. -webkit-animation-direction: alternate;
  1050. animation-delay: 0.2s;
  1051. animation-direction: alternate;
  1052. margin-top: -6px;
  1053. }
  1054. .trei {
  1055. -webkit-animation-delay: 0.3s;
  1056. -moz-animation-delay: 0.3s;
  1057. -webkit-animation-direction: alternate;
  1058. animation-delay: 0.3s;
  1059. animation-direction: alternate;
  1060. margin-top: -6px;
  1061. }
  1062. .mouse {
  1063. height: 42px;
  1064. width: 24px;
  1065. border-radius: 14px;
  1066. transform: none;
  1067. border: 2px solid #fff;
  1068. top: 170px;
  1069. }
  1070. .wheel {
  1071. height: 5px;
  1072. width: 2px;
  1073. display: block;
  1074. margin: 5px auto;
  1075. background: #fff;
  1076. position: relative;
  1077. height: 4px;
  1078. width: 4px;
  1079. border: 2px solid #fff;
  1080. -webkit-border-radius: 8px;
  1081. border-radius: 8px;
  1082. }
  1083. .wheel {
  1084. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1085. -moz-animation: mouse-wheel 0.6s linear infinite;
  1086. animation: mouse-wheel 0.8s linear infinite;
  1087. }
  1088. @-webkit-keyframes mouse-wheel {
  1089. 0% {
  1090. opacity: 1;
  1091. -webkit-transform: translateY(0);
  1092. -ms-transform: translateY(0);
  1093. transform: translateY(0);
  1094. }
  1095. 100% {
  1096. opacity: 0;
  1097. -webkit-transform: translateY(6px);
  1098. -ms-transform: translateY(6px);
  1099. transform: translateY(6px);
  1100. }
  1101. }
  1102. @-moz-keyframes mouse-wheel {
  1103. 0% {
  1104. top: 1px;
  1105. }
  1106. 25% {
  1107. top: 5px;
  1108. }
  1109. 50% {
  1110. top: 10px;
  1111. }
  1112. 75% {
  1113. top: 5px;
  1114. }
  1115. 100% {
  1116. top: 1px;
  1117. }
  1118. }
  1119. @-o-keyframes mouse-wheel {
  1120. 0% {
  1121. top: 1px;
  1122. }
  1123. 25% {
  1124. top: 2px;
  1125. }
  1126. 50% {
  1127. top: 3px;
  1128. }
  1129. 75% {
  1130. top: 2px;
  1131. }
  1132. 100% {
  1133. top: 1px;
  1134. }
  1135. }
  1136. @keyframes mouse-wheel {
  1137. 0% {
  1138. top: 1px;
  1139. }
  1140. 25% {
  1141. top: 5px;
  1142. }
  1143. 50% {
  1144. top: 15px;
  1145. }
  1146. 75% {
  1147. top: 5px;
  1148. }
  1149. 100% {
  1150. top: 1px;
  1151. }
  1152. }
  1153. @-webkit-keyframes mouse-scroll {
  1154. 0% {
  1155. opacity: 0;
  1156. }
  1157. 50% {
  1158. opacity: 0.5;
  1159. }
  1160. 100% {
  1161. opacity: 1;
  1162. }
  1163. }
  1164. @-moz-keyframes mouse-scroll {
  1165. 0% {
  1166. opacity: 0;
  1167. }
  1168. 50% {
  1169. opacity: 0.5;
  1170. }
  1171. 100% {
  1172. opacity: 1;
  1173. }
  1174. }
  1175. @-o-keyframes mouse-scroll {
  1176. 0% {
  1177. opacity: 0;
  1178. }
  1179. 50% {
  1180. opacity: 0.5;
  1181. }
  1182. 100% {
  1183. opacity: 1;
  1184. }
  1185. }
  1186. @keyframes mouse-scroll {
  1187. 0% {
  1188. opacity: 0;
  1189. }
  1190. 50% {
  1191. opacity: 0.5;
  1192. }
  1193. 100% {
  1194. opacity: 1;
  1195. }
  1196. }
  1197. }
  1198. @media screen and(min-width:$desktop) {
  1199. display: none;
  1200. }
  1201. h1 {
  1202. color: #fff;
  1203. font-size: 45px;
  1204. font-weight: 900;
  1205. padding: 5px 10px;
  1206. @media screen and(max-width:$moblie) {
  1207. font-weight: 900;
  1208. font-size: 32px;
  1209. }
  1210. }
  1211. hr {
  1212. width: 30vw;
  1213. height: 2px;
  1214. color: #fff;
  1215. margin: 10px;
  1216. opacity: 1 !important;
  1217. }
  1218. #sec04-moblie-container {
  1219. padding-top: 10vw;
  1220. .col {
  1221. margin: 10px;
  1222. .card {
  1223. img {
  1224. height: 150px;
  1225. object-fit: cover;
  1226. }
  1227. border-radius: 0%;
  1228. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1229. .card-title {
  1230. font-weight: 900;
  1231. }
  1232. .learn-more {
  1233. width: 120px;
  1234. }
  1235. }
  1236. }
  1237. }
  1238. }
  1239. // sec05 熱門作品-電腦版
  1240. #sec05 {
  1241. width: 85vw;
  1242. margin: 0 auto;
  1243. padding-top: 5vw;
  1244. padding-bottom: 5vw;
  1245. @media screen and(max-width:$moblie) {
  1246. display: none;
  1247. }
  1248. h1 {
  1249. font-size: 45px;
  1250. font-weight: 900;
  1251. padding: 15px;
  1252. }
  1253. #sec05-container {
  1254. #sec05-destop-slider {
  1255. .slick-prev:before,
  1256. .slick-next:before {
  1257. opacity: 0;
  1258. }
  1259. .slick-prev,
  1260. .slick-next {
  1261. width: 40px;
  1262. height: 40px;
  1263. content: none;
  1264. }
  1265. .slick-prev {
  1266. background-image: url(./img/arrow-table2.png);
  1267. background-repeat: no-repeat;
  1268. left: -40px;
  1269. &:hover,
  1270. &:focus {
  1271. background-image: url(./img/arrow-table2.png);
  1272. background-repeat: no-repeat;
  1273. }
  1274. }
  1275. .slick-next {
  1276. background-image: url(./img/arrow-table.png);
  1277. background-repeat: no-repeat;
  1278. right: -50px;
  1279. &:hover,
  1280. &:focus {
  1281. background-image: url(./img/arrow-table.png);
  1282. background-repeat: no-repeat;
  1283. }
  1284. }
  1285. }
  1286. .col {
  1287. margin: 5px;
  1288. }
  1289. .card {
  1290. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1291. }
  1292. }
  1293. }
  1294. // sec05熱門作品-手機板
  1295. #sec05-moblie {
  1296. padding-top: 5vw;
  1297. padding-bottom: 10vw;
  1298. overflow: hidden;
  1299. @media screen and(min-width:$desktop) {
  1300. display: none;
  1301. }
  1302. #sec05-moblie-container {
  1303. position: relative;
  1304. .arrow-table {
  1305. position: fixed;
  1306. width: 25px;
  1307. right: 5px;
  1308. bottom: 300px;
  1309. z-index: 6;
  1310. @media screen and(max-width:350px) {
  1311. right: 10px;
  1312. }
  1313. }
  1314. }
  1315. h1 {
  1316. font-size: 45px;
  1317. font-weight: 900;
  1318. padding: 15px;
  1319. }
  1320. #sec05-moblie-slider {
  1321. .sec05-moblie-box {
  1322. padding: 20px;
  1323. margin: 30px;
  1324. @media screen and(max-width:400px) {
  1325. padding: 5px;
  1326. margin: 20px;
  1327. }
  1328. .card {
  1329. border: none;
  1330. }
  1331. }
  1332. }
  1333. .sec05-button {
  1334. text-align: center;
  1335. margin-top: -50px;
  1336. .mouse_scroll {
  1337. display: inline-block;
  1338. margin: 0 auto;
  1339. width: 24px;
  1340. transform: rotate(90deg);
  1341. }
  1342. .testright {
  1343. transform: rotate(180deg);
  1344. }
  1345. .m_scroll_arrows {
  1346. display: block;
  1347. width: 5px;
  1348. height: 5px;
  1349. -ms-transform: rotate(45deg); /* IE 9 */
  1350. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1351. transform: rotate(45deg);
  1352. border-right: 2px solid #000;
  1353. border-bottom: 2px solid #000;
  1354. margin: 0 0 3px 4px;
  1355. width: 16px;
  1356. height: 16px;
  1357. }
  1358. .unu {
  1359. margin-top: 1px;
  1360. }
  1361. .unu,
  1362. .doi,
  1363. .trei {
  1364. -webkit-animation: mouse-scroll 1s infinite;
  1365. -moz-animation: mouse-scroll 1s infinite;
  1366. animation: mouse-scroll 1s infinite;
  1367. }
  1368. .unu {
  1369. -webkit-animation-delay: 0.1s;
  1370. -moz-animation-delay: 0.1s;
  1371. -webkit-animation-direction: alternate;
  1372. animation-direction: alternate;
  1373. animation-delay: alternate;
  1374. }
  1375. .doi {
  1376. -webkit-animation-delay: 0.2s;
  1377. -moz-animation-delay: 0.2s;
  1378. -webkit-animation-direction: alternate;
  1379. animation-delay: 0.2s;
  1380. animation-direction: alternate;
  1381. margin-top: -6px;
  1382. }
  1383. .trei {
  1384. -webkit-animation-delay: 0.3s;
  1385. -moz-animation-delay: 0.3s;
  1386. -webkit-animation-direction: alternate;
  1387. animation-delay: 0.3s;
  1388. animation-direction: alternate;
  1389. margin-top: -6px;
  1390. }
  1391. .mouse {
  1392. height: 42px;
  1393. width: 24px;
  1394. border-radius: 14px;
  1395. transform: none;
  1396. border: 2px solid #000;
  1397. top: 170px;
  1398. }
  1399. .wheel {
  1400. height: 5px;
  1401. width: 2px;
  1402. display: block;
  1403. margin: 5px auto;
  1404. background: #000;
  1405. position: relative;
  1406. height: 4px;
  1407. width: 4px;
  1408. border: 2px solid #000;
  1409. -webkit-border-radius: 8px;
  1410. border-radius: 8px;
  1411. }
  1412. .wheel {
  1413. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1414. -moz-animation: mouse-wheel 0.6s linear infinite;
  1415. animation: mouse-wheel 0.8s linear infinite;
  1416. }
  1417. @-webkit-keyframes mouse-wheel {
  1418. 0% {
  1419. opacity: 1;
  1420. -webkit-transform: translateY(0);
  1421. -ms-transform: translateY(0);
  1422. transform: translateY(0);
  1423. }
  1424. 100% {
  1425. opacity: 0;
  1426. -webkit-transform: translateY(6px);
  1427. -ms-transform: translateY(6px);
  1428. transform: translateY(6px);
  1429. }
  1430. }
  1431. @-moz-keyframes mouse-wheel {
  1432. 0% {
  1433. top: 1px;
  1434. }
  1435. 25% {
  1436. top: 5px;
  1437. }
  1438. 50% {
  1439. top: 10px;
  1440. }
  1441. 75% {
  1442. top: 5px;
  1443. }
  1444. 100% {
  1445. top: 1px;
  1446. }
  1447. }
  1448. @-o-keyframes mouse-wheel {
  1449. 0% {
  1450. top: 1px;
  1451. }
  1452. 25% {
  1453. top: 2px;
  1454. }
  1455. 50% {
  1456. top: 3px;
  1457. }
  1458. 75% {
  1459. top: 2px;
  1460. }
  1461. 100% {
  1462. top: 1px;
  1463. }
  1464. }
  1465. @keyframes mouse-wheel {
  1466. 0% {
  1467. top: 1px;
  1468. }
  1469. 25% {
  1470. top: 5px;
  1471. }
  1472. 50% {
  1473. top: 15px;
  1474. }
  1475. 75% {
  1476. top: 5px;
  1477. }
  1478. 100% {
  1479. top: 1px;
  1480. }
  1481. }
  1482. @-webkit-keyframes mouse-scroll {
  1483. 0% {
  1484. opacity: 0;
  1485. }
  1486. 50% {
  1487. opacity: 0.5;
  1488. }
  1489. 100% {
  1490. opacity: 1;
  1491. }
  1492. }
  1493. @-moz-keyframes mouse-scroll {
  1494. 0% {
  1495. opacity: 0;
  1496. }
  1497. 50% {
  1498. opacity: 0.5;
  1499. }
  1500. 100% {
  1501. opacity: 1;
  1502. }
  1503. }
  1504. @-o-keyframes mouse-scroll {
  1505. 0% {
  1506. opacity: 0;
  1507. }
  1508. 50% {
  1509. opacity: 0.5;
  1510. }
  1511. 100% {
  1512. opacity: 1;
  1513. }
  1514. }
  1515. @keyframes mouse-scroll {
  1516. 0% {
  1517. opacity: 0;
  1518. }
  1519. 50% {
  1520. opacity: 0.5;
  1521. }
  1522. 100% {
  1523. opacity: 1;
  1524. }
  1525. }
  1526. }
  1527. }
  1528. // sec06 NFT資訊
  1529. #sec06 {
  1530. width: 100vw;
  1531. padding-top: 5vw;
  1532. padding-bottom: 10vw;
  1533. background: #525252;
  1534. @media screen and(max-width:$moblie) {
  1535. background: #313131;
  1536. }
  1537. .sec06-button {
  1538. text-align: center;
  1539. width: 75vw;
  1540. @media screen and(min-width:$desktop) {
  1541. display: none;
  1542. }
  1543. .mouse_scroll {
  1544. display: inline-block;
  1545. margin: 0 auto;
  1546. width: 24px;
  1547. transform: rotate(90deg);
  1548. }
  1549. .testright {
  1550. transform: rotate(180deg);
  1551. }
  1552. .m_scroll_arrows {
  1553. display: block;
  1554. width: 5px;
  1555. height: 5px;
  1556. -ms-transform: rotate(45deg); /* IE 9 */
  1557. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1558. transform: rotate(45deg);
  1559. border-right: 2px solid #fff;
  1560. border-bottom: 2px solid #fff;
  1561. margin: 0 0 3px 4px;
  1562. width: 16px;
  1563. height: 16px;
  1564. }
  1565. .unu {
  1566. margin-top: 1px;
  1567. }
  1568. .unu,
  1569. .doi,
  1570. .trei {
  1571. -webkit-animation: mouse-scroll 1s infinite;
  1572. -moz-animation: mouse-scroll 1s infinite;
  1573. animation: mouse-scroll 1s infinite;
  1574. }
  1575. .unu {
  1576. -webkit-animation-delay: 0.1s;
  1577. -moz-animation-delay: 0.1s;
  1578. -webkit-animation-direction: alternate;
  1579. animation-direction: alternate;
  1580. animation-delay: alternate;
  1581. }
  1582. .doi {
  1583. -webkit-animation-delay: 0.2s;
  1584. -moz-animation-delay: 0.2s;
  1585. -webkit-animation-direction: alternate;
  1586. animation-delay: 0.2s;
  1587. animation-direction: alternate;
  1588. margin-top: -6px;
  1589. }
  1590. .trei {
  1591. -webkit-animation-delay: 0.3s;
  1592. -moz-animation-delay: 0.3s;
  1593. -webkit-animation-direction: alternate;
  1594. animation-delay: 0.3s;
  1595. animation-direction: alternate;
  1596. margin-top: -6px;
  1597. }
  1598. .mouse {
  1599. height: 42px;
  1600. width: 24px;
  1601. border-radius: 14px;
  1602. transform: none;
  1603. border: 2px solid #fff;
  1604. top: 170px;
  1605. }
  1606. .wheel {
  1607. height: 5px;
  1608. width: 2px;
  1609. display: block;
  1610. margin: 5px auto;
  1611. background: #fff;
  1612. position: relative;
  1613. height: 4px;
  1614. width: 4px;
  1615. border: 2px solid #fff;
  1616. -webkit-border-radius: 8px;
  1617. border-radius: 8px;
  1618. }
  1619. .wheel {
  1620. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1621. -moz-animation: mouse-wheel 0.6s linear infinite;
  1622. animation: mouse-wheel 0.8s linear infinite;
  1623. }
  1624. @-webkit-keyframes mouse-wheel {
  1625. 0% {
  1626. opacity: 1;
  1627. -webkit-transform: translateY(0);
  1628. -ms-transform: translateY(0);
  1629. transform: translateY(0);
  1630. }
  1631. 100% {
  1632. opacity: 0;
  1633. -webkit-transform: translateY(6px);
  1634. -ms-transform: translateY(6px);
  1635. transform: translateY(6px);
  1636. }
  1637. }
  1638. @-moz-keyframes mouse-wheel {
  1639. 0% {
  1640. top: 1px;
  1641. }
  1642. 25% {
  1643. top: 5px;
  1644. }
  1645. 50% {
  1646. top: 10px;
  1647. }
  1648. 75% {
  1649. top: 5px;
  1650. }
  1651. 100% {
  1652. top: 1px;
  1653. }
  1654. }
  1655. @-o-keyframes mouse-wheel {
  1656. 0% {
  1657. top: 1px;
  1658. }
  1659. 25% {
  1660. top: 2px;
  1661. }
  1662. 50% {
  1663. top: 3px;
  1664. }
  1665. 75% {
  1666. top: 2px;
  1667. }
  1668. 100% {
  1669. top: 1px;
  1670. }
  1671. }
  1672. @keyframes mouse-wheel {
  1673. 0% {
  1674. top: 1px;
  1675. }
  1676. 25% {
  1677. top: 5px;
  1678. }
  1679. 50% {
  1680. top: 15px;
  1681. }
  1682. 75% {
  1683. top: 5px;
  1684. }
  1685. 100% {
  1686. top: 1px;
  1687. }
  1688. }
  1689. @-webkit-keyframes mouse-scroll {
  1690. 0% {
  1691. opacity: 0;
  1692. }
  1693. 50% {
  1694. opacity: 0.5;
  1695. }
  1696. 100% {
  1697. opacity: 1;
  1698. }
  1699. }
  1700. @-moz-keyframes mouse-scroll {
  1701. 0% {
  1702. opacity: 0;
  1703. }
  1704. 50% {
  1705. opacity: 0.5;
  1706. }
  1707. 100% {
  1708. opacity: 1;
  1709. }
  1710. }
  1711. @-o-keyframes mouse-scroll {
  1712. 0% {
  1713. opacity: 0;
  1714. }
  1715. 50% {
  1716. opacity: 0.5;
  1717. }
  1718. 100% {
  1719. opacity: 1;
  1720. }
  1721. }
  1722. @keyframes mouse-scroll {
  1723. 0% {
  1724. opacity: 0;
  1725. }
  1726. 50% {
  1727. opacity: 0.5;
  1728. }
  1729. 100% {
  1730. opacity: 1;
  1731. }
  1732. }
  1733. }
  1734. h1 {
  1735. font-size: 45px;
  1736. font-weight: 900;
  1737. padding: 15px;
  1738. color: #fff;
  1739. }
  1740. hr {
  1741. width: 12vw;
  1742. height: 2px;
  1743. color: #fff;
  1744. margin: 10px;
  1745. opacity: 1 !important;
  1746. @media screen and(max-width:$moblie) {
  1747. width: 30vw;
  1748. }
  1749. }
  1750. #sec06-container {
  1751. width: 80vw;
  1752. .slick-prev:before,
  1753. .slick-next:before {
  1754. opacity: 0;
  1755. }
  1756. .slick-prev,
  1757. .slick-next {
  1758. width: 40px;
  1759. height: 40px;
  1760. content: none;
  1761. }
  1762. .slick-prev {
  1763. background-image: url(./img/sec06/sec06-arrow-2.png);
  1764. background-repeat: no-repeat;
  1765. left: -40px;
  1766. &:hover,
  1767. &:focus {
  1768. background-image: url(./img/sec06/sec06-arrow-2.png);
  1769. background-repeat: no-repeat;
  1770. }
  1771. }
  1772. .slick-next {
  1773. background-image: url(./img/sec06/sec06-arrow.png);
  1774. background-repeat: no-repeat;
  1775. right: -50px;
  1776. &:hover,
  1777. &:focus {
  1778. background-image: url(./img/sec06/sec06-arrow.png);
  1779. background-repeat: no-repeat;
  1780. }
  1781. }
  1782. .card {
  1783. margin: 10px;
  1784. height: 500px;
  1785. display: inline-block;
  1786. img {
  1787. height: 150px;
  1788. object-fit: cover;
  1789. }
  1790. border-radius: 0%;
  1791. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1792. .card-title {
  1793. font-weight: 900;
  1794. font-size: 18px;
  1795. }
  1796. .learn-more {
  1797. width: 120px;
  1798. }
  1799. }
  1800. .learn-more {
  1801. width: 120px;
  1802. }
  1803. }
  1804. }
  1805. // sec07 table 電腦版
  1806. #sec07 {
  1807. padding-top: 5vw;
  1808. padding-bottom: 5vw;
  1809. @media screen and(max-width:$moblie) {
  1810. display: none;
  1811. }
  1812. .NFT-Collections-Sales-Volume {
  1813. width: 80vw;
  1814. margin: 0 auto;
  1815. margin-top: -120px;
  1816. margin-bottom: 50px;
  1817. @media screen and(max-width:$moblie) {
  1818. display: none;
  1819. }
  1820. h1 {
  1821. padding: 0;
  1822. margin: 0;
  1823. font-weight: normal;
  1824. color: #fff;
  1825. letter-spacing: 3px;
  1826. font-size: 50px;
  1827. }
  1828. }
  1829. .table {
  1830. text-align: center;
  1831. thead tr th {
  1832. border: 0;
  1833. }
  1834. td {
  1835. display: table-cell;
  1836. vertical-align: middle;
  1837. text-align: left;
  1838. img {
  1839. width: 50px;
  1840. }
  1841. .data-line {
  1842. width: 100px;
  1843. }
  1844. }
  1845. th {
  1846. display: table-cell;
  1847. vertical-align: middle;
  1848. text-align: left;
  1849. }
  1850. img {
  1851. padding: 5px;
  1852. }
  1853. }
  1854. .sec07-table-button {
  1855. text-align: right;
  1856. .data-button {
  1857. text-align: left;
  1858. border-radius: 25px;
  1859. width: 10vw;
  1860. padding: 5px 20px;
  1861. color: #000;
  1862. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1863. background-size: 18px 18px;
  1864. background-color: #fff;
  1865. border: 1px solid #000;
  1866. }
  1867. }
  1868. }
  1869. // sec07 table手機板 標題
  1870. #sec07-moblir-title {
  1871. background: #414141;
  1872. @media screen and(min-width:$desktop) {
  1873. display: none;
  1874. }
  1875. #sec07-container {
  1876. padding: 15px;
  1877. font-weight: 900;
  1878. color: #fff;
  1879. }
  1880. }
  1881. // sec07 table手機板
  1882. #sec07-moblie {
  1883. padding-top: 5vw;
  1884. padding-bottom: 5vw;
  1885. @media screen and(min-width:$desktop) {
  1886. display: none;
  1887. }
  1888. .table {
  1889. text-align: center;
  1890. thead tr th {
  1891. border: 0;
  1892. }
  1893. td {
  1894. display: table-cell;
  1895. vertical-align: middle;
  1896. text-align-last: left;
  1897. font-size: 14px;
  1898. img {
  1899. width: 30px;
  1900. }
  1901. .data-line {
  1902. width: 80px;
  1903. }
  1904. }
  1905. th {
  1906. display: table-cell;
  1907. vertical-align: middle;
  1908. text-align: left;
  1909. font-size: 14px;
  1910. }
  1911. img {
  1912. padding: 5px;
  1913. width: 50px;
  1914. }
  1915. }
  1916. .sec07-table-button {
  1917. text-align: right;
  1918. .data-button {
  1919. text-align: left;
  1920. border-radius: 25px;
  1921. width: 35vw;
  1922. padding: 5px 20px;
  1923. color: #000;
  1924. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1925. background-size: 18px 18px;
  1926. background-color: #fff;
  1927. border: 1px solid #000;
  1928. }
  1929. }
  1930. }
  1931. #sec08 {
  1932. padding-bottom: 5vw;
  1933. background: linear-gradient(180deg, #414141 35%, transparent 30%, #fff 55%);
  1934. position: relative;
  1935. @media screen and(max-width:$moblie) {
  1936. background: linear-gradient(180deg, #414141 100%, transparent 30%, #fff 55%);
  1937. padding-top: 10vw;
  1938. }
  1939. #sec08-container-box {
  1940. background-size: contain;
  1941. background-repeat: no-repeat;
  1942. background-blend-mode: overlay;
  1943. }
  1944. #sec08-title {
  1945. background: #414141;
  1946. padding-top: 5vw;
  1947. .col-lg-9 {
  1948. position: relative;
  1949. #OUR-PARTNER {
  1950. position: absolute;
  1951. top: 20px;
  1952. right: 0vw;
  1953. @media screen and(max-width:$moblie) {
  1954. top: 0px;
  1955. }
  1956. h5 {
  1957. font-size: 48px;
  1958. opacity: 0.8;
  1959. /* 文字的距離 */
  1960. /* 通常搭配內距左邊 */
  1961. text-align: center;
  1962. letter-spacing: 10px;
  1963. font-weight: 900;
  1964. color: #f5f5f5;
  1965. @media screen and(max-width:$moblie) {
  1966. font-size: 20px;
  1967. letter-spacing: 5px;
  1968. text-align: left;
  1969. }
  1970. }
  1971. }
  1972. }
  1973. h1 {
  1974. padding: 10px;
  1975. color: #fff;
  1976. font-size: 48px;
  1977. font-weight: 900;
  1978. @media screen and(max-width:$moblie) {
  1979. font-weight: 900;
  1980. font-size: 32px;
  1981. padding: 0px;
  1982. }
  1983. }
  1984. hr {
  1985. width: 5vw;
  1986. height: 5px;
  1987. color: #fff;
  1988. margin: 10px auto;
  1989. opacity: 1 !important;
  1990. @media screen and(max-width:$moblie) {
  1991. width: 30vw;
  1992. }
  1993. }
  1994. }
  1995. #sec08-container {
  1996. .card {
  1997. border: none;
  1998. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1999. @media screen and(max-width:$moblie) {
  2000. padding-top: 5vw;
  2001. padding-bottom: 5vw;
  2002. }
  2003. .adv4 {
  2004. display: flex;
  2005. align-items: center;
  2006. img {
  2007. align-items: center;
  2008. object-fit: cover;
  2009. }
  2010. }
  2011. }
  2012. .sec08-1 {
  2013. padding: 0px !important;
  2014. }
  2015. .col-3 {
  2016. img {
  2017. padding: 40px;
  2018. object-fit: cover;
  2019. @media screen and(max-width:$moblie) {
  2020. padding: 3px;
  2021. }
  2022. }
  2023. }
  2024. }
  2025. }
  2026. #sec09 {
  2027. background: #414141;
  2028. padding-bottom: 5vw;
  2029. .col-lg-9 {
  2030. position: relative;
  2031. #TRADING {
  2032. position: absolute;
  2033. right: -1px;
  2034. top: -50px;
  2035. @media screen and(max-width:$moblie) {
  2036. top: 5px;
  2037. right: 30px;
  2038. }
  2039. @media screen and(max-width:350px) {
  2040. right: 20px;
  2041. }
  2042. h5 {
  2043. font-size: 48px;
  2044. opacity: 0.8;
  2045. /* 文字的距離 */
  2046. /* 通常搭配內距左邊 */
  2047. letter-spacing: 10px;
  2048. font-weight: 900;
  2049. color: #f5f5f5;
  2050. @media screen and(max-width:$moblie) {
  2051. font-size: 20px;
  2052. letter-spacing: 5px;
  2053. text-align: left;
  2054. }
  2055. }
  2056. }
  2057. }
  2058. #sec09-container-box {
  2059. background-size: contain;
  2060. background-repeat: no-repeat;
  2061. background-blend-mode: overlay;
  2062. }
  2063. #sec09-title {
  2064. padding-top: 10vw;
  2065. h1 {
  2066. color: #fff;
  2067. font-size: 48px;
  2068. font-weight: 900;
  2069. padding: 5px 10px;
  2070. @media screen and(max-width:$moblie) {
  2071. font-weight: 900;
  2072. font-size: 32px;
  2073. padding: 5px 0px;
  2074. }
  2075. }
  2076. hr {
  2077. width: 5vw;
  2078. height: 5px;
  2079. color: #000;
  2080. margin: 10px auto;
  2081. opacity: 1 !important;
  2082. @media screen and(max-width:$moblie) {
  2083. width: 30vw;
  2084. }
  2085. }
  2086. }
  2087. #sec09-container {
  2088. .card {
  2089. background: #000;
  2090. padding-top: 5vw;
  2091. padding-bottom: 5vw;
  2092. border: none;
  2093. .sec09-7 {
  2094. width: 200px;
  2095. }
  2096. .adv4 {
  2097. display: flex;
  2098. align-items: center;
  2099. img {
  2100. align-items: center;
  2101. }
  2102. }
  2103. }
  2104. .col-3 {
  2105. margin: 10px 0;
  2106. @media screen and(max-width:$desktop) {
  2107. padding: 15px;
  2108. }
  2109. @media screen and(max-width:$moblie) {
  2110. padding: 5px;
  2111. }
  2112. img {
  2113. object-fit: cover;
  2114. @media screen and(max-width:$moblie) {
  2115. padding: 0px;
  2116. }
  2117. }
  2118. }
  2119. .sec09-1 {
  2120. padding: 70px;
  2121. @media screen and(max-width:$moblie) {
  2122. padding: 20px;
  2123. }
  2124. }
  2125. }
  2126. }
  2127. // 頁尾
  2128. #footer {
  2129. width: 100vw;
  2130. text-align: center;
  2131. line-height: 2;
  2132. background: #313131;
  2133. color: #fff;
  2134. .footer-link {
  2135. padding-top: 3vw;
  2136. a {
  2137. text-decoration: none;
  2138. font-size: 20px;
  2139. padding: 10px;
  2140. color: #fff;
  2141. @media screen and(max-width:$moblie) {
  2142. font-size: 14px;
  2143. padding: 0 !important;
  2144. }
  2145. @media screen and(max-width:400px) {
  2146. font-size: 12px;
  2147. }
  2148. span {
  2149. font-size: 28px;
  2150. @media screen and(max-width:$moblie) {
  2151. font-size: 16px;
  2152. }
  2153. @media screen and(max-width:350px) {
  2154. font-size: 14px;
  2155. }
  2156. }
  2157. }
  2158. }
  2159. .text {
  2160. padding-top: 3vw;
  2161. a {
  2162. text-decoration: none;
  2163. color: #fff;
  2164. }
  2165. h2 {
  2166. font-size: 20px;
  2167. margin: 10px;
  2168. letter-spacing: 1px;
  2169. @media screen and(max-width:$moblie) {
  2170. display: block;
  2171. font-size: 16px;
  2172. margin: 8px;
  2173. }
  2174. }
  2175. p {
  2176. margin: 0 !important;
  2177. }
  2178. img {
  2179. width: 30px;
  2180. margin: 10px;
  2181. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  2182. transition: 0.3s;
  2183. &:hover {
  2184. opacity: 0.6;
  2185. }
  2186. }
  2187. }
  2188. }
  2189. #adv01 {
  2190. .adv01-1 {
  2191. @media screen and(max-width:$moblie) {
  2192. width: 100vw;
  2193. margin: 0;
  2194. }
  2195. img {
  2196. @media screen and(max-width:$moblie) {
  2197. width: 100vw;
  2198. }
  2199. }
  2200. }
  2201. }
  2202. #adv02 {
  2203. .adv01-1 {
  2204. width: 90vw;
  2205. @media screen and(max-width:$moblie) {
  2206. width: 100vw;
  2207. margin: 0;
  2208. }
  2209. img {
  2210. @media screen and(max-width:$moblie) {
  2211. width: 100vw;
  2212. }
  2213. }
  2214. }
  2215. }
  2216. // 第二層文章
  2217. #sec10 {
  2218. width: 85vw;
  2219. hr {
  2220. height: 1px;
  2221. background: #525252;
  2222. opacity: 1;
  2223. }
  2224. p {
  2225. line-height: 2;
  2226. font-size: 16px;
  2227. }
  2228. }
  2229. // ip代理服務
  2230. #sec11 {
  2231. #sec11-container {
  2232. h1 {
  2233. font-weight: 900;
  2234. font-size: 28px;
  2235. }
  2236. width: 85vw;
  2237. .sec11-01 {
  2238. @media screen and(max-width:$moblie) {
  2239. display: block;
  2240. }
  2241. }
  2242. .col {
  2243. overflow: hidden;
  2244. }
  2245. .sec11-img {
  2246. width: 550px;
  2247. height: 350px;
  2248. object-fit: cover;
  2249. transition: 0.3s;
  2250. cursor: pointer;
  2251. &:hover {
  2252. transform: scale(1.02);
  2253. }
  2254. @media screen and(max-width:$moblie) {
  2255. height: 250px;
  2256. }
  2257. }
  2258. h2 {
  2259. font-weight: 900;
  2260. font-size: 24px;
  2261. }
  2262. }
  2263. }
  2264. #sec13 {
  2265. background-image: url(./img/sec04banner.jpg);
  2266. background-size: cover;
  2267. .left{
  2268. .ip-service {
  2269. width: 50vw;
  2270. padding: 30px;
  2271. margin: 0px auto;
  2272. background: #252628;
  2273. box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
  2274. color: white;
  2275. border-radius: 10px;
  2276. font-size: 16px;
  2277. @media screen and(max-width:$moblie) {
  2278. width: 100vw;
  2279. margin: 0;
  2280. }
  2281. img {
  2282. width: 200px;
  2283. }
  2284. #name,
  2285. #email,
  2286. #phone,
  2287. #loc,
  2288. #selector1,
  2289. #work {
  2290. width: 100%;
  2291. height: 35px;
  2292. margin: 10px 0;
  2293. padding: 20px 5px;
  2294. background: #1b1c1e;
  2295. border: 1px solid rgba(0, 0, 0, 0.3);
  2296. border-radius: 5px;
  2297. }
  2298. #selector1 {
  2299. padding: 10px 5px;
  2300. background: none;
  2301. border: none;
  2302. }
  2303. .btn {
  2304. width: 200px;
  2305. margin: 30px 0px;
  2306. padding: 15px 0;
  2307. background-color: #93000a;
  2308. /* 邊框:寬度 樣式 顏色 */
  2309. border: 0 solid #000;
  2310. color: #fff;
  2311. &:hover {
  2312. color: #93000a;
  2313. background: #fff;
  2314. border: 1px solid #93000a;
  2315. }
  2316. }
  2317. }
  2318. }
  2319. .right{
  2320. img{
  2321. margin: 0px 50px;
  2322. }
  2323. h1 {
  2324. margin: 10px 50px;
  2325. color: #fff;
  2326. font-weight: 900;
  2327. font-size: 72px;
  2328. margin-bottom: 50px;
  2329. }
  2330. h2{
  2331. padding: 30px;
  2332. margin: 20px 5px;
  2333. color: #fff;
  2334. font-weight: 900;
  2335. font-size: 40px;
  2336. }
  2337. ul{
  2338. color: #fff;
  2339. font-weight: 900;
  2340. font-size: 45px;
  2341. }
  2342. }
  2343. }
  2344. #sec-service {
  2345. background: #000;
  2346. padding:5vw 0px;
  2347. h5 {
  2348. font-size: 24px;
  2349. }
  2350. p {
  2351. font-size: 20px;
  2352. }
  2353. h1 {
  2354. text-align: center;
  2355. color: #fff;
  2356. font-weight: 900;
  2357. font-size: 72px;
  2358. }
  2359. }