style.scss 62 KB

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