style.scss 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: 微軟正黑體;
  6. }
  7. $bgdesktop: 1920px;
  8. $desktop: 1025px;
  9. $table: 1024px;
  10. $moblie: 767px;
  11. $color: #000;
  12. $text-color: #868686;
  13. $Font-color: #707070;
  14. $title-color: #646464;
  15. $bgcolor: #fbf6f3;
  16. $size: 50px;
  17. @font-face {
  18. font-family: 追奇手寫體;
  19. src: url(./drechifont-Proportional5.woff);
  20. font-weight: 900;
  21. }
  22. body {
  23. background: #fbf6f3;
  24. }
  25. .body-content{
  26. overflow: hidden;
  27. position: relative;
  28. }
  29. // 主選單
  30. #Navigation {
  31. background: rgba(255, 255, 255, 0.5);
  32. height: 4.5vw;
  33. width: 100vw !important;
  34. position: fixed;
  35. z-index: 100;
  36. @media screen and(max-width:$table) {
  37. height: 8vw;
  38. }
  39. @media screen and(max-width:$moblie) {
  40. height: 15vw;
  41. position: fixed;
  42. z-index: 100;
  43. }
  44. #nav {
  45. width: 100vw;
  46. margin: 0 auto;
  47. }
  48. // rwd要注意高度
  49. #logo {
  50. padding-top: 1vw;
  51. @media screen and(max-width:$moblie) {
  52. padding-top: 2vw;
  53. }
  54. img {
  55. width: 120px;
  56. }
  57. }
  58. #link {
  59. text-align: right;
  60. padding: 1.5vw 3vw;
  61. @media screen and(max-width:$table) {
  62. padding-top: 2vw;
  63. }
  64. @media screen and(max-width:$moblie) {
  65. display: none;
  66. }
  67. a {
  68. text-decoration: none;
  69. color: $Font-color;
  70. letter-spacing: 1px;
  71. font-size: 0.9rem;
  72. font-weight: 600;
  73. cursor: pointer;
  74. padding: 15px;
  75. position: relative;
  76. text-shadow: 0px 8px 6px #00000029;
  77. @media screen and(max-width:$table) {
  78. padding: 5px;
  79. padding-top: 2vw;
  80. }
  81. }
  82. }
  83. #menu-btn1 {
  84. position: absolute;
  85. right: 1vw;
  86. top: 5vw;
  87. width: 14vw;
  88. z-index: 6;
  89. @media screen and(min-width:$desktop) {
  90. display: none;
  91. }
  92. @media screen and(min-width:768px) {
  93. display: none;
  94. }
  95. }
  96. }
  97. // 手機板下拉選單
  98. // 手機menu彈跳視窗
  99. #menu-box {
  100. top: 15vw;
  101. height: 360px;
  102. width: 100vw;
  103. position: fixed;
  104. z-index: 100;
  105. display: none;
  106. box-shadow: 0px 3px 20px #00000029;
  107. @media screen and(min-width:$desktop) {
  108. display: none;
  109. }
  110. @media screen and(max-width:$moblie) {
  111. height: 60vh;
  112. }
  113. hr {
  114. display: inline-block;
  115. margin: 0px auto !important;
  116. width: 95%;
  117. background: $Font-color;
  118. }
  119. #menu-box2 {
  120. width: 100vw;
  121. height: 360px;
  122. background-color: $bgcolor;
  123. opacity: 0.95;
  124. z-index: 7;
  125. text-align: center;
  126. #menu-link {
  127. display: grid;
  128. grid-template-columns: repeat(4, 1fr);
  129. width: 60vw;
  130. margin: 0 auto;
  131. }
  132. a {
  133. display: inline-block;
  134. text-decoration: none;
  135. color: #707070;
  136. font-size: 20px;
  137. text-shadow: 0px 8px 6px #00000029;
  138. @media screen and(max-width:$moblie) {
  139. margin-top: 2vw;
  140. }
  141. }
  142. .menu-text {
  143. width: 100vw;
  144. text-align: center;
  145. margin-bottom: 10px;
  146. @media screen and(max-width:$moblie) {
  147. margin-bottom: 5px !important;
  148. }
  149. }
  150. }
  151. }
  152. .social-icons {
  153. position: fixed;
  154. right: 50px;
  155. bottom: 12.5rem;
  156. z-index: 100;
  157. display: flex;
  158. flex-direction: column;
  159. @media screen and(max-width:$table) {
  160. right: 50px;
  161. }
  162. a {
  163. text-decoration: none;
  164. display: block;
  165. margin-bottom: 10px;
  166. }
  167. img {
  168. width: 15px;
  169. height: 15px;
  170. object-fit: cover;
  171. }
  172. }
  173. .banner {
  174. padding-top: 7vw;
  175. background: url(./img/bg.png);
  176. background-repeat: no-repeat;
  177. background-size: cover;
  178. @media screen and(min-width:768px) {
  179. padding-top: 10vw;
  180. }
  181. #scene{
  182. @media screen and(max-width:$moblie) {
  183. display: none;
  184. }
  185. }
  186. #banner-des {
  187. @media screen and(max-width:$moblie) {
  188. display: none;
  189. }
  190. }
  191. #banner-m {
  192. // 更動
  193. @media screen and(min-width:768px) {
  194. display: none;
  195. }
  196. @media screen and(min-width:$desktop) {
  197. display: none;
  198. }
  199. }
  200. @media screen and(max-width:$moblie) {
  201. padding-top: 20vw;
  202. }
  203. .banner-content {
  204. width: 70vw;
  205. margin: 0 auto;
  206. @media screen and(max-width:$moblie) {
  207. width: 95vw;
  208. }
  209. #lux-banner{
  210. display: grid;
  211. grid-template-columns: 1fr 1fr 1fr;
  212. width: 65vw;
  213. margin-left: 5vw;
  214. .banner-border2{
  215. width: 85%;
  216. // height:32vw;
  217. top:-2px;
  218. left:-6px;
  219. }
  220. .banner-border1{
  221. width: 85%;
  222. height:32vw;
  223. top:30px;
  224. left:-5px;
  225. @media screen and(max-width:$table) {
  226. top:20px;
  227. }
  228. }
  229. .lux-01{
  230. overflow: hidden;
  231. border-radius:150px 150px 0% 0%;
  232. margin-top: 3vw;
  233. width: 17vw;
  234. height:30vw;
  235. img{
  236. position: relative;
  237. bottom:30px;
  238. width: 100%;
  239. transform: scale(1.2);
  240. height:35vw;
  241. }
  242. }
  243. .lux-02{
  244. overflow: hidden;
  245. border-radius:150px 150px 0% 0%;
  246. width: 17vw;
  247. height:33vw;
  248. img{
  249. position: relative;
  250. bottom:30px;
  251. width: 100%;
  252. transform: scale(1.2);
  253. height:35vw;
  254. object-fit: cover;
  255. }
  256. }
  257. .lux-03{
  258. overflow: hidden;
  259. border-radius:150px 150px 0% 0%;
  260. margin-top: 3vw;
  261. width: 17vw;
  262. height:30vw;
  263. img{
  264. position: relative;
  265. bottom:30px;
  266. width: 100%;
  267. transform: scale(1.2);
  268. height:35vw;
  269. object-fit: cover;
  270. }
  271. }
  272. }
  273. .banner-title {
  274. margin-top: 8vw;
  275. width: 65vw;
  276. margin-left: 3vw;
  277. @media screen and(max-width:$moblie) {
  278. margin-top: 20vw;
  279. width: 100%;
  280. margin-left:0vw;
  281. }
  282. #title-des {
  283. position: relative;
  284. z-index: 100;
  285. margin: 0 auto;
  286. animation-name: title;
  287. animation-duration: 2s;
  288. animation-delay: 0.5s;
  289. animation-fill-mode: backwards;
  290. @media screen and(max-width:$moblie) {
  291. display: none;
  292. }
  293. }
  294. #title-m {
  295. @media screen and(min-width:768px) {
  296. display: none;
  297. }
  298. @media screen and(min-width:$desktop) {
  299. display: none;
  300. }
  301. }
  302. }
  303. .banner-text {
  304. margin-top: 25px;
  305. p {
  306. text-align: center;
  307. color: #868686;
  308. margin-bottom: 3px !important;
  309. }
  310. @media screen and(max-width:$moblie) {
  311. display: none;
  312. }
  313. }
  314. .banner-text-m {
  315. margin-top: 25px;
  316. p {
  317. text-align: center;
  318. color: #868686;
  319. margin-bottom: 3px !important;
  320. font-size: 3.6vmin;
  321. }
  322. // 更動
  323. @media screen and(min-width:768px) {
  324. display: none;
  325. }
  326. @media screen and(min-width:$desktop) {
  327. display: none;
  328. }
  329. }
  330. }
  331. }
  332. .sec01-title-des {
  333. @media screen and(max-width:$moblie) {
  334. display: none;
  335. }
  336. }
  337. .sec01-title-m {
  338. @media screen and(min-width:768px) {
  339. display: none;
  340. }
  341. @media screen and(min-width:$desktop) {
  342. display: none;
  343. }
  344. }
  345. .sec01,
  346. .sec01-int {
  347. .sec01-content {
  348. width: 72vw;
  349. margin: 0 auto;
  350. padding-bottom: 10vw;
  351. @media screen and(max-width:$table) {
  352. width: 80vw;
  353. }
  354. @media screen and(max-width:$moblie) {
  355. width: 95vw;
  356. }
  357. .sec01-h1-title {
  358. position: relative;
  359. .line31 {
  360. position: absolute;
  361. left: 5.5vw;
  362. top: 15vw;
  363. @media screen and(max-width:$table) {
  364. left: 9.5vw;
  365. }
  366. @media screen and(max-width:$moblie) {
  367. display: none;
  368. }
  369. }
  370. }
  371. h1 {
  372. writing-mode: vertical-lr;
  373. font-weight: bold;
  374. color: $Font-color;
  375. font-size: 45px;
  376. letter-spacing: 10px;
  377. text-shadow: 0px 8px 6px #00000029;
  378. @media screen and(max-width:$moblie) {
  379. writing-mode: horizontal-tb;
  380. font-size: 7vmin;
  381. letter-spacing: 0px;
  382. text-align: center;
  383. }
  384. }
  385. h2 {
  386. font-size: 3vmin;
  387. color: $Font-color;
  388. text-shadow: 0px 8px 6px #00000029;
  389. @media screen and(max-width:$moblie) {
  390. font-size: 5.5vmin;
  391. }
  392. }
  393. .sec01-text {
  394. margin-top: 10px;
  395. }
  396. p {
  397. color: $text-color;
  398. line-height: 2;
  399. font-size: 1.9vmin;
  400. @media screen and(max-width:$moblie) {
  401. font-size: 4vmin;
  402. }
  403. }
  404. // 大坪數
  405. #sec01-card1 {
  406. position: relative;
  407. top: 50px;
  408. .img01-box {
  409. @media screen and(max-width:$moblie) {
  410. text-align: center;
  411. }
  412. }
  413. .sec01-img01 {
  414. @media screen and(max-width:$table) {
  415. margin-bottom: 10px;
  416. }
  417. @media screen and(max-width:$moblie) {
  418. width: 76px;
  419. object-fit: cover;
  420. margin-bottom: 30px;
  421. }
  422. }
  423. }
  424. // 大理石
  425. #sec01-card2 {
  426. margin-top: 200px;
  427. @media screen and(max-width:$table) {
  428. margin-top: 100px;
  429. }
  430. @media screen and(max-width:$moblie) {
  431. margin-top: 100px;
  432. }
  433. .img02-box {
  434. @media screen and(max-width:$moblie) {
  435. text-align: center;
  436. }
  437. }
  438. .sec01-img02 {
  439. @media screen and(max-width:$table) {
  440. margin-bottom: 10px;
  441. }
  442. @media screen and(max-width:$moblie) {
  443. width: 44px;
  444. object-fit: cover;
  445. margin-bottom: 30px;
  446. }
  447. }
  448. }
  449. // 奢華家具
  450. #sec01-card3 {
  451. position: relative;
  452. top: 90px;
  453. left: 50px;
  454. @media screen and(max-width:$moblie) {
  455. left: 0px;
  456. top: 90px;
  457. }
  458. .img03-box {
  459. @media screen and(max-width:$moblie) {
  460. text-align: center;
  461. }
  462. }
  463. .sec01-img03 {
  464. @media screen and(max-width:$table) {
  465. margin-bottom: 10px;
  466. }
  467. @media screen and(max-width:$moblie) {
  468. width: 53px;
  469. object-fit: cover;
  470. margin-bottom: 30px;
  471. }
  472. }
  473. }
  474. // 藝術品
  475. #sec01-card4 {
  476. position: relative;
  477. top: 250px;
  478. left: 50px;
  479. @media screen and(max-width:$table) {
  480. top: 150px;
  481. }
  482. @media screen and(max-width:$moblie) {
  483. left: 0px;
  484. top: 150px;
  485. }
  486. .img04-box {
  487. @media screen and(max-width:$moblie) {
  488. text-align: center;
  489. }
  490. }
  491. .sec01-img04 {
  492. @media screen and(max-width:$table) {
  493. margin-bottom: 10px;
  494. }
  495. @media screen and(max-width:$moblie) {
  496. width: 36px;
  497. object-fit: cover;
  498. margin-bottom: 30px;
  499. }
  500. }
  501. }
  502. }
  503. }
  504. // sec02桌機板
  505. .sec02 {
  506. background: url(./img/bg.png);
  507. background-repeat: no-repeat;
  508. background-size: cover;
  509. @media screen and(max-width:$moblie) {
  510. display: none;
  511. }
  512. .sec02-content {
  513. margin-top: -210px;
  514. @media screen and(max-width:$table) {
  515. margin-top: -150px;
  516. }
  517. @media screen and(max-width:$moblie) {
  518. margin-top: 0px;
  519. }
  520. .sec02-img {
  521. @media screen and(max-width:$moblie) {
  522. display: none;
  523. }
  524. }
  525. .sec02-img-m {
  526. @media screen and(min-width:768px) {
  527. display: none;
  528. }
  529. @media screen and(min-width:$desktop) {
  530. display: none;
  531. }
  532. }
  533. .object178 {
  534. width: 250px;
  535. z-index: 30;
  536. top: -5vw;
  537. left: 4.5vw;
  538. transition: 0.5s;
  539. // margin-left: 120px;
  540. @media screen and(max-width:$table) {
  541. width: 150px;
  542. }
  543. @media screen and(max-width:$moblie) {
  544. display: none;
  545. }
  546. }
  547. .object177{
  548. right:-1vw;
  549. width: 500px;
  550. top:15vw;
  551. transition: 0.5s;
  552. @media screen and(max-width:$table) {
  553. width: 300px;
  554. top:10vw;
  555. }
  556. }
  557. .object188 {
  558. width: 180px;
  559. left: 42vw;
  560. // margin-left: 620px;
  561. // margin-top: 50px;
  562. transition: 0.5s;
  563. @media screen and(max-width:$table) {
  564. width: 100px;
  565. }
  566. }
  567. .object404 {
  568. top:240px;
  569. z-index: 1;
  570. width:52vw;
  571. @media screen and(max-width:$table) {
  572. top:140px;
  573. }
  574. }
  575. // 世界豪宅趨勢
  576. .sec02-right {
  577. margin-top: 120px;
  578. margin-left: 80px;
  579. @media screen and(max-width:$moblie) {
  580. margin-left: 0px;
  581. }
  582. }
  583. // 豪宅的條件
  584. .sec02-left-d {
  585. margin-top: 50px;
  586. @media screen and(max-width:$table) {
  587. margin-top: -50px;
  588. }
  589. }
  590. // 類豪宅剖析
  591. .sec02-right-d {
  592. position: relative;
  593. bottom: -100px;
  594. left: -15vmin;
  595. z-index: 20;
  596. @media screen and(max-width:$table) {
  597. bottom: -200px;
  598. }
  599. .luxury-text{
  600. width: 400px;
  601. line-height: 2;
  602. }
  603. }
  604. // 介紹內容
  605. .sec02-int {
  606. h3 {
  607. color: $Font-color;
  608. font-weight: bold;
  609. font-size: 20px;
  610. }
  611. h1 {
  612. color: $Font-color;
  613. font-weight: bold;
  614. text-shadow: 0px 8px 6px #00000029;
  615. padding-bottom: 15px;
  616. }
  617. .sec02-text {
  618. color: $text-color;
  619. p {
  620. margin-bottom: 5px;
  621. }
  622. }
  623. h4 {
  624. color: $Font-color;
  625. font-weight: bold;
  626. text-shadow: 0px 8px 6px #00000029;
  627. padding-bottom: 15px;
  628. }
  629. }
  630. .sec02-content-down {
  631. margin-left: 30vmin;
  632. padding-bottom: 3vw;
  633. @media screen and(max-width:$table) {
  634. margin-left: 5vmin;
  635. }
  636. }
  637. }
  638. }
  639. // sec02手機板
  640. .sec02-m {
  641. background: url(./img/sec02/sec02-bg.png);
  642. background-repeat: no-repeat;
  643. background-size: cover;
  644. @media screen and(min-width:768px) {
  645. display: none;
  646. }
  647. @media screen and(min-width:$desktop) {
  648. display: none;
  649. }
  650. .sec02-content {
  651. margin-top: -210px;
  652. padding-bottom: 10vw;
  653. @media screen and(max-width:$moblie) {
  654. margin-top: 0px;
  655. }
  656. .object188-m{
  657. width: 100px;
  658. left:22vw;
  659. z-index: 1;
  660. }
  661. .sec02-img {
  662. @media screen and(max-width:$moblie) {
  663. display: none;
  664. }
  665. }
  666. .sec02-img-m {
  667. @media screen and(min-width:$desktop) {
  668. display: none;
  669. }
  670. }
  671. // 世界豪宅趨勢
  672. .sec02-right {
  673. margin-top: 120px;
  674. margin-left: 80px;
  675. @media screen and(max-width:$moblie) {
  676. margin-left: 0px;
  677. }
  678. }
  679. // 豪宅的條件
  680. .sec02-left-d {
  681. margin-top: 50px;
  682. margin-bottom: 30px;
  683. }
  684. // 類豪宅剖析
  685. // 介紹內容
  686. .sec02-int {
  687. h3 {
  688. color: $Font-color;
  689. font-weight: bold;
  690. font-size: 16px;
  691. }
  692. h1 {
  693. color: $Font-color;
  694. font-weight: bold;
  695. text-shadow: 0px 8px 6px #00000029;
  696. padding-bottom: 15px;
  697. font-size: 8vmin;
  698. }
  699. .sec02-text {
  700. color: $text-color;
  701. p {
  702. margin-bottom: 5px;
  703. font-size: 3.8vmin;
  704. }
  705. }
  706. h4 {
  707. color: $Font-color;
  708. font-weight: bold;
  709. text-shadow: 0px 8px 6px #00000029;
  710. padding-bottom: 15px;
  711. }
  712. }
  713. .sec02-content-down {
  714. margin-left: 30vmin;
  715. padding-bottom: 3vw;
  716. }
  717. }
  718. }
  719. .sec03-big{
  720. position: relative;
  721. .object182-m{
  722. width: 250px;
  723. right:-30vw;
  724. top:180px;
  725. }
  726. }
  727. .sec03 {
  728. margin-top: -320px;
  729. position: relative;
  730. bottom: -160px;
  731. z-index: 19;
  732. @media screen and(max-width:$table) {
  733. margin-top: -120px;
  734. }
  735. @media screen and(max-width:$moblie) {
  736. margin-top: -50px;
  737. bottom: 0px;
  738. }
  739. .sec03-img01 {
  740. position: relative;
  741. z-index: 3;
  742. width: 57vw;
  743. object-fit: cover;
  744. @media screen and(max-width:$table) {
  745. width: 65vw;
  746. }
  747. @media screen and(max-width:$moblie) {
  748. width: 70vw;
  749. }
  750. }
  751. .sec03-img02 {
  752. position: absolute;
  753. top: 100px;
  754. width: 85vw;
  755. z-index: 1;
  756. @media screen and(max-width:$table) {
  757. top: 40px;
  758. }
  759. @media screen and(max-width:$moblie) {
  760. top:30px;
  761. width: 95vw;
  762. }
  763. }
  764. #sec03-img03-box {
  765. position: relative;
  766. top: 300px;
  767. @media screen and(max-width:$table) {
  768. top: 60px;
  769. }
  770. @media screen and(max-width:$moblie) {
  771. top:10px;
  772. }
  773. .sec03-img03 {
  774. width: 83vw;
  775. }
  776. }
  777. .sec03img-des {
  778. @media screen and(max-width:$moblie) {
  779. display: none;
  780. }
  781. }
  782. .sec03img-m {
  783. @media screen and(min-width:$desktop) {
  784. display: none;
  785. }
  786. }
  787. }
  788. .sec04 {
  789. margin-top: 200px;
  790. background: url(./img/bg.png);
  791. background-repeat: no-repeat;
  792. background-size: cover;
  793. @media screen and(max-width:$table) {
  794. margin-top: 50px;
  795. }
  796. @media screen and(max-width:$moblie) {
  797. margin-top: 10px;
  798. }
  799. .sec04-content {
  800. position: relative;
  801. padding-top: 100px;
  802. width: 67vw;
  803. margin: 0 auto;
  804. @media screen and(max-width:$moblie) {
  805. width: 95vw;
  806. padding-bottom: 30px;
  807. padding-top: 0px;
  808. }
  809. .object182 {
  810. width: 450px;
  811. top: -7vw;
  812. left: -10vw;
  813. transition: 0.5s;
  814. @media screen and(max-width:$table) {
  815. width: 300px;
  816. }
  817. @media screen and(max-width:$moblie) {
  818. display: none;
  819. }
  820. }
  821. .object182-m{
  822. top: -7vw;
  823. width: 250px;
  824. left:64vw;
  825. top:-30vw;
  826. @media screen and(max-width:$table) {
  827. display: none;
  828. }
  829. @media screen and(min-width:$desktop) {
  830. display: none;
  831. }
  832. }
  833. #issue3 {
  834. left: 33%;
  835. @media screen and(max-width:$table) {
  836. left: 27%;
  837. }
  838. @media screen and(max-width:$moblie) {
  839. left: 20%;
  840. }
  841. }
  842. .sec04-bottom-box {
  843. margin: 0 auto;
  844. text-align: center;
  845. @media screen and(min-width:768px) {
  846. width: 70vw;
  847. }
  848. @media screen and(min-width:$desktop) {
  849. width: 40vw;
  850. }
  851. @media screen and(max-width:$moblie) {
  852. width: 95vw;
  853. padding: 5px;
  854. }
  855. p {
  856. font-size: 14px;
  857. color: $Font-color;
  858. @media screen and(max-width:$moblie) {
  859. font-size: 12px;
  860. margin-bottom: 3px;
  861. line-height: 2;
  862. }
  863. }
  864. }
  865. .NewLuxuryLife {
  866. h1 {
  867. font-size: 3.5rem;
  868. font-family: 追奇手寫體;
  869. color: $Font-color;
  870. transform: rotate(-2deg);
  871. }
  872. hr {
  873. background: $Font-color;
  874. width: 60px;
  875. height: 3px;
  876. margin: 10px auto;
  877. opacity: 1 !important;
  878. }
  879. }
  880. .sec04-int {
  881. h3 {
  882. color: $Font-color;
  883. font-weight: bold;
  884. font-size: 20px;
  885. }
  886. h1 {
  887. color: $Font-color;
  888. font-weight: bold;
  889. text-shadow: 0px 8px 6px #00000029;
  890. padding-bottom: 15px;
  891. }
  892. .sec04-text {
  893. color: $text-color;
  894. width: 38vw;
  895. margin: 0 auto;
  896. @media screen and(max-width:$table) {
  897. width: 70vw;
  898. }
  899. @media screen and(max-width:$moblie) {
  900. width: 95vw;
  901. }
  902. p {
  903. margin-bottom: 5px;
  904. font-size: 16px;
  905. }
  906. }
  907. }
  908. .sec04-designers {
  909. .object241 {
  910. width: 200px;
  911. left: -8vw;
  912. z-index: 0;
  913. top: 18vw;
  914. transition: 0.5s;
  915. @media screen and(max-width:$table) {
  916. display: none;
  917. }
  918. @media screen and(max-width:$moblie) {
  919. display: none;
  920. }
  921. }
  922. .object242{
  923. width: 200px;
  924. right:-6vw;
  925. top:18vw;
  926. z-index: 1;
  927. transition: 0.5s;
  928. @media screen and(max-width:$table) {
  929. display: none;
  930. }
  931. @media screen and(max-width:$moblie) {
  932. display: none;
  933. }
  934. }
  935. .sec04-right-card {
  936. margin-top: 30px;
  937. @media screen and(max-width:$moblie) {
  938. margin-top: -50px;
  939. }
  940. .designer-btn {
  941. position: relative;
  942. top: -35px;
  943. left: 140px;
  944. transition: 0.3s;
  945. @media screen and(max-width:$moblie) {
  946. left: 15px;
  947. }
  948. }
  949. }
  950. .sec04-left-card {
  951. .designer-btn {
  952. position: relative;
  953. top: -35px;
  954. left: 30px;
  955. @media screen and(max-width:$moblie) {
  956. left: 15px;
  957. }
  958. }
  959. }
  960. .sec04-right-card,
  961. .sec04-left-card {
  962. position: relative;
  963. z-index: 3;
  964. img {
  965. transition: 0.5s;
  966. }
  967. &:hover {
  968. img {
  969. transform: scale(1.1);
  970. }
  971. }
  972. .designer-btn {
  973. width: 250px;
  974. background: #f6ded2;
  975. color: $Font-color;
  976. transition: 0.3s;
  977. .arrow-img {
  978. filter: invert(45%) sepia(1%) saturate(2047%) hue-rotate(329deg) brightness(95%) contrast(83%);
  979. }
  980. .arrow-right {
  981. float: right;
  982. position: relative;
  983. left: 50px;
  984. top: -50px;
  985. background: #f6ded2;
  986. }
  987. &:hover {
  988. color: #fff;
  989. background: #f9a094;
  990. .arrow-img {
  991. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(356deg) brightness(102%)
  992. contrast(102%);
  993. }
  994. .arrow-right {
  995. background: #f9a094;
  996. }
  997. }
  998. @media screen and(max-width:$moblie) {
  999. width: 210px;
  1000. }
  1001. .designer-name {
  1002. padding: 10px 0px;
  1003. span {
  1004. padding-left: 20px;
  1005. font-size: 20px;
  1006. @media screen and(max-width:$moblie) {
  1007. font-size: 15px;
  1008. padding-left: 15px;
  1009. }
  1010. }
  1011. p {
  1012. font-size: 14px;
  1013. @media screen and(max-width:$moblie) {
  1014. font-size: 12px;
  1015. }
  1016. }
  1017. }
  1018. }
  1019. }
  1020. }
  1021. }
  1022. }
  1023. #sec04-2 {
  1024. @media screen and(min-width:$desktop) {
  1025. margin-top: -320px;
  1026. }
  1027. @media screen and(max-width:$table) {
  1028. margin-top: -150px;
  1029. }
  1030. @media screen and(max-width:$moblie) {
  1031. margin-top: -90px;
  1032. }
  1033. }
  1034. .gotop {
  1035. @media screen and(min-width:768px) {
  1036. display: none;
  1037. }
  1038. @media screen and(min-width:$desktop) {
  1039. display: none;
  1040. }
  1041. }
  1042. .gotop2 {
  1043. @media screen and(max-width:$moblie) {
  1044. display: none;
  1045. }
  1046. }
  1047. #footer {
  1048. background: #f6ded2;
  1049. text-align: center;
  1050. p {
  1051. padding: 15px;
  1052. color: #fff;
  1053. text-shadow: 0 1px 5px rgb(179,135,114);
  1054. }
  1055. }
  1056. .designer-content {
  1057. position: relative;
  1058. width: 80vw;
  1059. margin: 0 auto;
  1060. @media screen and(max-width:$moblie) {
  1061. width: 95vw;
  1062. }
  1063. #hr01 {
  1064. position: relative;
  1065. bottom: 17vw;
  1066. z-index: 3;
  1067. hr {
  1068. background-color: $Font-color;
  1069. position: absolute;
  1070. width: 100%;
  1071. opacity: 1 !important;
  1072. }
  1073. @media screen and(max-width:$table) {
  1074. bottom: 17vw;
  1075. }
  1076. @media screen and(max-width:$moblie) {
  1077. bottom: 450px;
  1078. opacity: 1;
  1079. z-index: 3;
  1080. }
  1081. }
  1082. #hr02 {
  1083. position: relative;
  1084. bottom: 16.5vw;
  1085. z-index: 3;
  1086. hr {
  1087. background-color: $Font-color;
  1088. position: absolute;
  1089. width: 100%;
  1090. opacity: 1 !important;
  1091. }
  1092. @media screen and(max-width:$moblie) {
  1093. bottom: 420px;
  1094. opacity: 1;
  1095. z-index: 6;
  1096. }
  1097. }
  1098. #hr03 {
  1099. position: relative;
  1100. bottom: 19vw;
  1101. z-index: 3;
  1102. hr {
  1103. background-color: $Font-color;
  1104. position: absolute;
  1105. width: 100%;
  1106. opacity: 1 !important;
  1107. }
  1108. @media screen and(max-width:$moblie) {
  1109. bottom: 420px;
  1110. opacity: 1;
  1111. z-index: 6;
  1112. }
  1113. @media screen and(max-width:350px) {
  1114. bottom: 360px;
  1115. opacity: 1;
  1116. z-index: 6;
  1117. }
  1118. }
  1119. #hr04 {
  1120. position: relative;
  1121. bottom: 12.5vw;
  1122. z-index: 3;
  1123. hr {
  1124. background-color: $Font-color;
  1125. position: absolute;
  1126. width: 100%;
  1127. opacity: 1 !important;
  1128. }
  1129. @media screen and(max-width:$table) {
  1130. bottom: 12vw;
  1131. }
  1132. @media screen and(max-width:$moblie) {
  1133. bottom: 380px;
  1134. opacity: 1;
  1135. z-index: 6;
  1136. }
  1137. @media screen and(max-width:350px) {
  1138. bottom: 310px;
  1139. opacity: 1;
  1140. z-index: 6;
  1141. }
  1142. }
  1143. .designer-img {
  1144. position: relative;
  1145. .img-01 {
  1146. position: relative;
  1147. z-index: 5;
  1148. width: 32vw;
  1149. object-fit: cover;
  1150. @media screen and(max-width:$moblie) {
  1151. display: none;
  1152. }
  1153. }
  1154. .img-01-m {
  1155. position: relative;
  1156. z-index: 5;
  1157. left: 18px;
  1158. @media screen and(min-width:768px) {
  1159. display: none;
  1160. }
  1161. @media screen and(min-width:$desktop) {
  1162. display: none;
  1163. }
  1164. }
  1165. .object1 {
  1166. width: 15vw;
  1167. position: absolute;
  1168. top: 10vw;
  1169. left: 10vw;
  1170. @media screen and(max-width:$table) {
  1171. left: 8vw;
  1172. top: 12vw;
  1173. }
  1174. @media screen and(max-width:$moblie) {
  1175. top: 20vw;
  1176. width: 150px;
  1177. left: 15vw;
  1178. }
  1179. }
  1180. .designertext {
  1181. color: $Font-color;
  1182. position: absolute;
  1183. z-index: 5;
  1184. top: 200px;
  1185. left: 8vmin;
  1186. @media screen and(max-width:$table) {
  1187. left: 1vmin;
  1188. top: 80px;
  1189. }
  1190. @media screen and(max-width:$moblie) {
  1191. left: 4vmin;
  1192. top: 100px;
  1193. }
  1194. h1 {
  1195. font-size: 45px;
  1196. @media screen and(max-width:$table) {
  1197. font-size: 32px;
  1198. }
  1199. @media screen and(max-width:$moblie) {
  1200. font-size: 10vmin;
  1201. }
  1202. }
  1203. p {
  1204. font-size: 12px;
  1205. @media screen and(max-width:$moblie) {
  1206. font-size: 10px;
  1207. transform: scale(0.8);
  1208. }
  1209. }
  1210. }
  1211. // 盧慧珊設計師
  1212. .designertext02 {
  1213. color: $Font-color;
  1214. position: absolute;
  1215. top: 100px;
  1216. right: 5vmin;
  1217. z-index: 5;
  1218. @media screen and(max-width:$table) {
  1219. right: -1vmin;
  1220. top: 60px;
  1221. }
  1222. @media screen and(max-width:$moblie) {
  1223. top: 70px;
  1224. right: 5vw;
  1225. }
  1226. @media screen and(max-width:350px) {
  1227. right: 1vw;
  1228. }
  1229. h1 {
  1230. font-size: 45px;
  1231. @media screen and(max-width:$table) {
  1232. font-size: 32px;
  1233. }
  1234. @media screen and(max-width:$moblie) {
  1235. font-size: 10vmin;
  1236. }
  1237. }
  1238. p {
  1239. font-size: 12px;
  1240. @media screen and(max-width:$moblie) {
  1241. font-size: 10px;
  1242. transform: scale(0.8);
  1243. }
  1244. }
  1245. }
  1246. .img-02 {
  1247. position: relative;
  1248. z-index: 5;
  1249. width: 35vw;
  1250. @media screen and(max-width:$table) {
  1251. margin-top: 15px;
  1252. right:30px;
  1253. }
  1254. @media screen and(max-width:$moblie) {
  1255. display: none;
  1256. }
  1257. }
  1258. .img-02-m {
  1259. width: 300px;
  1260. object-fit: cover;
  1261. position: relative;
  1262. z-index: 7;
  1263. right: 50px;
  1264. @media screen and(min-width:768px) {
  1265. display: none;
  1266. }
  1267. @media screen and(min-width:$desktop) {
  1268. display: none;
  1269. }
  1270. @media screen and(max-width:350px) {
  1271. right: 23px;
  1272. }
  1273. }
  1274. .object2 {
  1275. width: 15vw;
  1276. position: absolute;
  1277. top: 8vw;
  1278. right: 4vw;
  1279. @media screen and(max-width:$table) {
  1280. right: 3vw;
  1281. top: 8vw;
  1282. width: 17vw;
  1283. }
  1284. @media screen and(max-width:$moblie) {
  1285. width: 140px;
  1286. right: 5vw;
  1287. top: 18vw;
  1288. }
  1289. @media screen and(max-width:350px) {
  1290. right: 1vw;
  1291. }
  1292. }
  1293. // 鄧相盈設計師
  1294. .designertext03 {
  1295. color: $Font-color;
  1296. position: absolute;
  1297. top: 100px;
  1298. right: 2vmin;
  1299. z-index: 5;
  1300. @media screen and(max-width:$table) {
  1301. right: -1vmin;
  1302. top: 80px;
  1303. }
  1304. @media screen and(max-width:$moblie) {
  1305. right: -5px;
  1306. top: 90px;
  1307. }
  1308. @media screen and(max-width:350px) {
  1309. right: -5px;
  1310. top: 70px;
  1311. }
  1312. h1 {
  1313. font-size: 45px;
  1314. @media screen and(max-width:$table) {
  1315. font-size: 32px;
  1316. }
  1317. @media screen and(max-width:$moblie) {
  1318. font-size: 10vmin;
  1319. }
  1320. @media screen and(max-width:350px) {
  1321. font-size: 8vmin;
  1322. }
  1323. }
  1324. p {
  1325. font-size: 12px;
  1326. @media screen and(max-width:$moblie) {
  1327. font-size: 10px;
  1328. transform: scale(0.8);
  1329. }
  1330. }
  1331. }
  1332. .img-03 {
  1333. width: 33vw;
  1334. position: relative;
  1335. z-index: 7;
  1336. @media screen and(max-width:$table) {
  1337. right:30px;
  1338. margin-top: 15px;
  1339. }
  1340. @media screen and(max-width:$moblie) {
  1341. width: 300px;
  1342. right: 20px;
  1343. }
  1344. @media screen and(max-width:350px) {
  1345. width: 250px;
  1346. right: 30px;
  1347. }
  1348. }
  1349. .object3 {
  1350. width: 15vw;
  1351. position: absolute;
  1352. top: 8vw;
  1353. right: 4vw;
  1354. @media screen and(max-width:$table) {
  1355. top: 11vw;
  1356. }
  1357. @media screen and(max-width:$moblie) {
  1358. width: 140px;
  1359. right: 5vw;
  1360. top: 23vw;
  1361. }
  1362. @media screen and(max-width:350px) {
  1363. right: 10vw;
  1364. width: 120px;
  1365. }
  1366. }
  1367. // 李宜蔓
  1368. .designertext04 {
  1369. color: $Font-color;
  1370. position: absolute;
  1371. top: 250px;
  1372. left: 5vmin;
  1373. z-index: 5;
  1374. @media screen and(max-width:$table) {
  1375. top: 150px;
  1376. left:3vmin;
  1377. }
  1378. @media screen and(max-width:$moblie) {
  1379. top: 220px;
  1380. left: 40px;
  1381. }
  1382. @media screen and(max-width:350px) {
  1383. left: 15px;
  1384. top: 200px;
  1385. }
  1386. h1 {
  1387. font-size: 45px;
  1388. @media screen and(max-width:$table) {
  1389. font-size: 32px;
  1390. }
  1391. @media screen and(max-width:$moblie) {
  1392. font-size: 10vmin;
  1393. }
  1394. }
  1395. p {
  1396. font-size: 12px;
  1397. @media screen and(max-width:$moblie) {
  1398. font-size: 10px;
  1399. transform: scale(0.8);
  1400. }
  1401. }
  1402. }
  1403. .object4 {
  1404. width: 15vw;
  1405. position: absolute;
  1406. top: 8vw;
  1407. left: 10vw;
  1408. @media screen and(max-width:$table) {
  1409. left: 10vw;
  1410. top: 11vw;
  1411. }
  1412. @media screen and(max-width:$moblie) {
  1413. width: 140px;
  1414. left: 15vw;
  1415. top: 30vw;
  1416. }
  1417. @media screen and(max-width:350px) {
  1418. left: 10vw;
  1419. }
  1420. }
  1421. .img-04 {
  1422. width: 25vw;
  1423. position: relative;
  1424. z-index: 7;
  1425. @media screen and(max-width:$table) {
  1426. top: 2vw;
  1427. }
  1428. @media screen and(max-width:$moblie) {
  1429. right: -10px;
  1430. width: 260px;
  1431. }
  1432. @media screen and(max-width:350px) {
  1433. right: -10px;
  1434. width: 230px;
  1435. }
  1436. }
  1437. }
  1438. .video {
  1439. color: $Font-color;
  1440. position: relative;
  1441. background-size: contain;
  1442. background-repeat: no-repeat;
  1443. margin-top: 100px;
  1444. @media screen and(max-width:$table) {
  1445. margin-top: 80px;
  1446. }
  1447. @media screen and(max-width:$moblie) {
  1448. background-size: cover;
  1449. margin-top: 30px;
  1450. height: 55vw;
  1451. }
  1452. // .playbutton {
  1453. // position:absolute;
  1454. // top:120px;
  1455. // left:50%;
  1456. // z-index: 101;
  1457. // margin-top: 120px;
  1458. // @media screen and(max-width:$table) {
  1459. // width: 50px;
  1460. // margin-top: 70px;
  1461. // }
  1462. // @media screen and(max-width:$moblie) {
  1463. // margin-top: 20vw;
  1464. // }
  1465. // }
  1466. // 郁秀秀設計師
  1467. .work-text {
  1468. position: absolute;
  1469. bottom: 10vw;
  1470. font-size: 20px;
  1471. @media screen and(max-width:$table) {
  1472. bottom: 5vw;
  1473. }
  1474. @media screen and(max-width:$moblie) {
  1475. display: none;
  1476. }
  1477. }
  1478. // 盧慧珊設計師
  1479. .work-text2 {
  1480. position: absolute;
  1481. bottom: 9vw;
  1482. font-size: 20px;
  1483. @media screen and(max-width:$table) {
  1484. bottom: 3vw;
  1485. }
  1486. @media screen and(max-width:$moblie) {
  1487. display: none;
  1488. }
  1489. }
  1490. //鄧相盈設計師
  1491. .work-text3 {
  1492. position: absolute;
  1493. bottom: 10vw;
  1494. font-size: 20px;
  1495. @media screen and(max-width:$table) {
  1496. bottom: 3vw;
  1497. }
  1498. @media screen and(max-width:$moblie) {
  1499. display: none;
  1500. }
  1501. }
  1502. // 李宜蔓
  1503. .work-text4 {
  1504. position: absolute;
  1505. bottom: 5vw;
  1506. font-size: 20px;
  1507. @media screen and(max-width:$table) {
  1508. bottom: -1vw;
  1509. }
  1510. @media screen and(max-width:$moblie) {
  1511. display: none;
  1512. }
  1513. }
  1514. }
  1515. }
  1516. // 電腦版logo
  1517. .inclogo {
  1518. @media screen and(max-width:$moblie) {
  1519. display: none;
  1520. }
  1521. }
  1522. // 手機板logo
  1523. .inclogo-m {
  1524. @media screen and(max-width:$table) {
  1525. display: none;
  1526. }
  1527. @media screen and(min-width:$desktop) {
  1528. display: none;
  1529. }
  1530. .inclogo02 {
  1531. width: 300px;
  1532. @media screen and(max-width:$moblie) {
  1533. width: 110px;
  1534. }
  1535. }
  1536. }
  1537. // 方形logo
  1538. .inclogo3 {
  1539. width: 180px;
  1540. @media screen and(max-width:$table) {
  1541. width: 130px;
  1542. }
  1543. @media screen and(max-width:$moblie) {
  1544. width: 110px;
  1545. }
  1546. }
  1547. // 郁琇琇設計師
  1548. #designer1 {
  1549. .designer-bannerslider{
  1550. margin-top: -30px;
  1551. }
  1552. }
  1553. // 盧慧珊設計師
  1554. #designer2 {
  1555. padding-bottom: 10vw;
  1556. .designer-bannerslider{
  1557. margin-top: -50px;
  1558. }
  1559. }
  1560. #designer3 {
  1561. padding-bottom: 10vw;
  1562. .designer-bannerslider{
  1563. margin-top: -50px;
  1564. @media screen and(max-width:$moblie) {
  1565. margin-top: -10px;
  1566. }
  1567. .slick-dots {
  1568. display: none;
  1569. }
  1570. }
  1571. }
  1572. #designer4 {
  1573. .designer-bannerslider{
  1574. margin-top: -50px;
  1575. @media screen and(max-width:$moblie) {
  1576. margin-top: -10px;
  1577. }
  1578. .slick-dots {
  1579. display: none;
  1580. }
  1581. }
  1582. }
  1583. #designer2-sec01 {
  1584. margin-top: -200px;
  1585. @media screen and(max-width:$table) {
  1586. margin-top: -150px;
  1587. }
  1588. @media screen and(max-width:$moblie) {
  1589. margin-top: 0px;
  1590. }
  1591. }
  1592. #designer4-sec01{
  1593. @media screen and(max-width:$table) {
  1594. margin-top: -50px;
  1595. }
  1596. @media screen and(max-width:$moblie) {
  1597. margin-top: 0px;
  1598. }
  1599. }
  1600. .sec01-int {
  1601. margin-top: -110px;
  1602. padding-bottom: 5vw;
  1603. @media screen and(max-width:$moblie) {
  1604. margin-top: 0px;
  1605. }
  1606. .sec01-content {
  1607. p {
  1608. @media screen and(max-width:$moblie) {
  1609. font-weight: 900;
  1610. }
  1611. }
  1612. .slogan-part1 {
  1613. width: 35vw;
  1614. margin: 0 auto;
  1615. @media screen and(max-width:$table) {
  1616. margin-top: 30px;
  1617. width: 50vw;
  1618. }
  1619. @media screen and(max-width:$moblie) {
  1620. width: 90vw;
  1621. }
  1622. }
  1623. .slogan-part2 {
  1624. width: 20vw;
  1625. margin: 0 auto;
  1626. @media screen and(max-width:$table) {
  1627. width: 35vw;
  1628. }
  1629. @media screen and(max-width:$moblie) {
  1630. width: 90vw;
  1631. }
  1632. }
  1633. .slogan-part3 {
  1634. width: 60vw;
  1635. margin: 0 auto;
  1636. @media screen and(max-width:$moblie) {
  1637. width: 90vw;
  1638. }
  1639. }
  1640. }
  1641. //電腦版作品集
  1642. .protfolio-des {
  1643. h1 {
  1644. writing-mode: horizontal-tb;
  1645. font-size: 28px;
  1646. letter-spacing: 0px;
  1647. }
  1648. @media screen and(max-width:$moblie) {
  1649. display: none;
  1650. }
  1651. }
  1652. .protfolio-m {
  1653. padding-top: 30vw;
  1654. @media screen and(min-width:768px) {
  1655. display: none;
  1656. }
  1657. @media screen and(min-width:$desktop) {
  1658. display: none;
  1659. }
  1660. h1 {
  1661. color: $text-color !important;
  1662. text-shadow: none;
  1663. }
  1664. }
  1665. .gotop2 {
  1666. @media screen and(max-width:$moblie) {
  1667. display: none;
  1668. }
  1669. }
  1670. }
  1671. .Portfolio-img {
  1672. margin-top: 8vw;
  1673. @media screen and(max-width:$moblie) {
  1674. margin-top: 50vw;
  1675. }
  1676. }
  1677. .designer-nav {
  1678. width: 120px;
  1679. right: 130px;
  1680. top: 65px;
  1681. position: fixed;
  1682. z-index: 999;
  1683. box-shadow: 0px 3px 20px #00000029;
  1684. display: none;
  1685. @media screen and(max-width:$table) {
  1686. right: 10px;
  1687. }
  1688. hr {
  1689. margin: 5px auto !important;
  1690. background: #e2e2e2;
  1691. opacity: 1 !important;
  1692. width: 80%;
  1693. }
  1694. .nav-box {
  1695. padding-bottom: 1vw;
  1696. position: relative;
  1697. width: 120px;
  1698. background-color: #fbf6f3;
  1699. z-index: 7;
  1700. text-align: center;
  1701. a {
  1702. display: inline-block;
  1703. text-decoration: none;
  1704. color: #707070 !important;
  1705. font-size: 18px;
  1706. font-weight: 900;
  1707. text-align: center;
  1708. margin: 5px;
  1709. padding: 0 !important;
  1710. }
  1711. }
  1712. }
  1713. @keyframes title {
  1714. 0% {
  1715. opacity: 0;
  1716. }
  1717. 100% {
  1718. opacity: 1;
  1719. }
  1720. }
  1721. .arrow-wave {
  1722. display: inline-block;
  1723. cursor: pointer;
  1724. margin: 0 auto;
  1725. font-size: 0;
  1726. /* background-color: rgba(100,100,100,0.4); */
  1727. }
  1728. .arrow-wave span {
  1729. display: block;
  1730. position: relative;
  1731. height: 10px;
  1732. width: 16px;
  1733. /* background-color: rgba(100,100,100,0.4); */
  1734. opacity: 0.2;
  1735. }
  1736. .arrow-wave span::before,
  1737. .arrow-wave span::after {
  1738. display: block;
  1739. content: "";
  1740. position: absolute;
  1741. height: 2px;
  1742. width: 12px;
  1743. background-color: #fff;
  1744. }
  1745. .arrow-wave span::before {
  1746. top: -2px;
  1747. left: 0;
  1748. transform-origin: left center;
  1749. transform: rotate(45deg);
  1750. }
  1751. .arrow-wave span::after {
  1752. top: -2px;
  1753. right: 0;
  1754. transform-origin: right center;
  1755. transform: rotate(-45deg);
  1756. }
  1757. .arrow-wave span:nth-child(1n) {
  1758. animation: animate-arrow-wave 2s infinite;
  1759. animation-delay: 0.25s;
  1760. }
  1761. .arrow-wave span:nth-child(2n) {
  1762. animation: animate-arrow-wave 2s infinite;
  1763. animation-delay: 0.5s;
  1764. }
  1765. .arrow-wave span:nth-child(3n) {
  1766. animation: animate-arrow-wave 2s infinite;
  1767. animation-delay: 0.75s;
  1768. }
  1769. @keyframes animate-arrow-wave {
  1770. 0% {
  1771. opacity: 0.2;
  1772. }
  1773. 25% {
  1774. opacity: 0.2;
  1775. }
  1776. 50% {
  1777. opacity: 0.2;
  1778. }
  1779. 75% {
  1780. opacity: 1;
  1781. }
  1782. 100% {
  1783. opacity: 0.2;
  1784. }
  1785. }
  1786. // 文字動畫
  1787. .test {
  1788. position: relative;
  1789. }
  1790. // 圖片動畫
  1791. .test .cover, .test .p_cover, .test .b_cover {
  1792. width: 99.9%;
  1793. position: absolute;
  1794. z-index: 4;
  1795. bottom: 2.5vw;
  1796. display: block;
  1797. background-color: #fff;
  1798. transform: skewX(6deg) rotate(6deg);
  1799. height: 86%;
  1800. }
  1801. .test2 .cover2 {
  1802. width: 56.7vw;
  1803. position: absolute;
  1804. z-index: 4;
  1805. right: 2.7px;
  1806. bottom: 2.9vw;
  1807. display: block;
  1808. background-color: #fff;
  1809. transform: skewX(6deg) rotate(6deg);
  1810. height: 80%;
  1811. }
  1812. // 圖片動畫
  1813. .test .cover.slidein, .test .p_cover.slidein, .test .b_cover.slidein {
  1814. -webkit-animation: slidein 1.5s forwards;
  1815. animation: slidein 1.5s forwards;
  1816. }
  1817. .test2 .cover2.slidein2 {
  1818. -webkit-animation: slidein 2s forwards;
  1819. animation: slidein 2s forwards;
  1820. }
  1821. .title_back {
  1822. display: block;
  1823. position: relative;
  1824. width: 100%;
  1825. height: 100px;
  1826. overflow: hidden;
  1827. }
  1828. .title_back .title {
  1829. position: absolute;
  1830. left: 0;
  1831. bottom: -1.75em;
  1832. display: block;
  1833. -webkit-transition: all 1s;
  1834. transition: all 1s;
  1835. }
  1836. .test_content {
  1837. opacity: 0;
  1838. }
  1839. .test_content.fadein {
  1840. -webkit-animation: fadein 2s forwards;
  1841. animation: fadein 2s forwards;
  1842. }
  1843. @-webkit-keyframes slidein {
  1844. 100% {
  1845. height: 0px;
  1846. }
  1847. }
  1848. @keyframes slidein {
  1849. 100% {
  1850. height: 0px;
  1851. }
  1852. }
  1853. @-webkit-keyframes slidein2 {
  1854. 100% {
  1855. height: 0px;
  1856. }
  1857. }
  1858. @keyframes slidein2 {
  1859. 100% {
  1860. height: 0px;
  1861. }
  1862. }
  1863. @-webkit-keyframes fadein {
  1864. 0% {
  1865. opacity: 0;
  1866. }
  1867. 100% {
  1868. opacity: 1;
  1869. }
  1870. }
  1871. @keyframes fadein {
  1872. 0% {
  1873. opacity: 0;
  1874. }
  1875. 100% {
  1876. opacity: 1;
  1877. }
  1878. }
  1879. .slick-prev:before,.slick-next:before {
  1880. display: none;
  1881. }
  1882. .slick-prev,.slick-next{
  1883. z-index: 100;
  1884. @media screen and(max-width:$moblie) {
  1885. display: none;
  1886. }
  1887. }
  1888. .slick-next{
  1889. right:3px;
  1890. }
  1891. .slick-dots {
  1892. li{
  1893. // margin-top: 100px;
  1894. // 上右下左
  1895. margin:0px 0px ;
  1896. button:before{
  1897. font-size: 20px;
  1898. font-weight: 900;
  1899. top:15px;
  1900. content: '○';
  1901. color:#555555;
  1902. }
  1903. }
  1904. li.slick-active button:before {
  1905. opacity: .75;
  1906. color: #555555;
  1907. content: '●';
  1908. }
  1909. }
  1910. .designer-bannerslider{
  1911. box-shadow: 0px 20px 10px rgba(0,0,0,0.2);
  1912. }
  1913. .slick-arrow-slider{
  1914. opacity: 0.8;
  1915. background: #f6ded2;
  1916. border-radius: 50% 50% 50% 50% !important;
  1917. img{
  1918. filter: invert(45%) sepia(1%) saturate(2047%) hue-rotate(329deg) brightness(95%) contrast(83%);
  1919. }
  1920. }
  1921. .playbutton {
  1922. cursor: pointer;
  1923. position:absolute;
  1924. top:50%;
  1925. left: 50%;
  1926. transform: translate(-50%, -50%);
  1927. z-index: 101;
  1928. transition: 0.3s;
  1929. @media screen and(max-width:$moblie) {
  1930. top:10%;
  1931. left: 50%;
  1932. }
  1933. @media screen and(max-width:$table) {
  1934. width: 50px;
  1935. margin-top: 10px;
  1936. }
  1937. @media screen and(max-width:$moblie) {
  1938. margin-top: 20vw;
  1939. }
  1940. }
  1941. .playbutton-mb {
  1942. cursor: pointer;
  1943. position:absolute;
  1944. top:50%;
  1945. left: 50%;
  1946. transform: translate(-50%, -50%);
  1947. z-index: 101;
  1948. transition: 0.3s;
  1949. @media screen and(max-width:$moblie) {
  1950. top:10%;
  1951. left: 50%;
  1952. }
  1953. @media screen and(max-width:$table) {
  1954. width: 50px;
  1955. margin-top: 70px;
  1956. }
  1957. @media screen and(max-width:$moblie) {
  1958. margin-top: 20vw;
  1959. }
  1960. }
  1961. .modal-content{
  1962. @media screen and(max-width:$moblie) {
  1963. margin-top: 50vw;
  1964. }
  1965. }
  1966. .play-pc{
  1967. @media screen and(max-width:$moblie) {
  1968. display: none;
  1969. }
  1970. }
  1971. .play-mb_box{
  1972. @media screen and(min-width:$desktop) {
  1973. display: none !important;
  1974. }
  1975. @media screen and(max-width:$table) {
  1976. display: none;
  1977. }
  1978. @media screen and(max-width:$moblie) {
  1979. display: block !important;
  1980. }
  1981. }
  1982. .play-mb{
  1983. @media screen and(min-width:$desktop) {
  1984. display: none !important;
  1985. }
  1986. }
  1987. .modal-mb{
  1988. background: rgba(0,0,0,0.8) !important;
  1989. }