| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800 | 
							- * {
 
-     margin: 0;
 
-     padding: 0;
 
-     box-sizing: border-box;
 
-     font-family: 微軟正黑體;
 
- }
 
- $bgdesktop: 1920px;
 
- $desktop: 1025px;
 
- $table: 1024px;
 
- $moblie: 767px;
 
- $color: #000;
 
- $text-color: #868686;
 
- $Font-color: #707070;
 
- $title-color: #646464;
 
- $bgcolor: #fbf6f3;
 
- $size: 50px;
 
- @font-face {
 
-     font-family: 追奇手寫體;
 
-     src: url(./drechifont-Proportional5.woff);
 
-     font-weight: 900;
 
- }
 
- body {
 
-     background: #fbf6f3;
 
-    
 
- }
 
- .body-content{
 
-     overflow: hidden;
 
- }
 
- // 主選單
 
- #Navigation {
 
-     background: rgba(255, 255, 255, 0.5);
 
-     height: 4.5vw;
 
-     width: 100vw !important;
 
-     position: fixed;
 
-     z-index: 100;
 
-     @media screen and(max-width:$table) {
 
-         height: 8vw;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         height: 15vw;
 
-         position: fixed;
 
-         z-index: 100;
 
-     }
 
-     #nav {
 
-         width: 100vw;
 
-         margin: 0 auto;
 
-     }
 
-     //    rwd要注意高度
 
-     #logo {
 
-         padding-top: 1vw;
 
-         @media screen and(max-width:$moblie) {
 
-             padding-top: 2vw;
 
-         }
 
-         img {
 
-             width: 120px;
 
-         }
 
-     }
 
-     #link {
 
-         text-align: right;
 
-         padding: 1.5vw 3vw;
 
-         @media screen and(max-width:$table) {
 
-             padding-top: 2vw;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-         a {
 
-             text-decoration: none;
 
-             color: $Font-color;
 
-             letter-spacing: 1px;
 
-             font-size: 0.9rem;
 
-             font-weight: 600;
 
-             cursor: pointer;
 
-             padding: 15px;
 
-             position: relative;
 
-             text-shadow: 0px 8px 6px #00000029;
 
-             @media screen and(max-width:$table) {
 
-                 padding: 5px;
 
-                 padding-top: 2vw;
 
-             }
 
-         }
 
-     }
 
-     #menu-btn1 {
 
-         position: absolute;
 
-         right: 1vw;
 
-         top: 5vw;
 
-         width: 14vw;
 
-         z-index: 6;
 
-         @media screen and(min-width:$desktop) {
 
-             display: none;
 
-         }
 
-         @media screen and(min-width:768px) {
 
-             display: none;
 
-         }
 
-     }
 
- }
 
- // 手機板下拉選單
 
- // 手機menu彈跳視窗
 
- #menu-box {
 
-     top: 15vw;
 
-     height: 360px;
 
-     width: 100vw;
 
-     position: fixed;
 
-     z-index: 100;
 
-     display: none;
 
-     box-shadow: 0px 3px 20px #00000029;
 
-     @media screen and(min-width:$desktop) {
 
-         display: none;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         height: 60vh;
 
-     }
 
-     hr {
 
-         display: inline-block;
 
-         margin: 0px auto !important;
 
-         width: 95%;
 
-         background: $Font-color;
 
-     }
 
-     #menu-box2 {
 
-         width: 100vw;
 
-         height: 360px;
 
-         background-color: $bgcolor;
 
-         opacity: 0.95;
 
-         z-index: 7;
 
-         text-align: center;
 
-         #menu-link {
 
-             display: grid;
 
-             grid-template-columns: repeat(4, 1fr);
 
-             width: 60vw;
 
-             margin: 0 auto;
 
-         }
 
-         a {
 
-             display: inline-block;
 
-             text-decoration: none;
 
-             color: #707070;
 
-             font-size: 20px;
 
-             text-shadow: 0px 8px 6px #00000029;
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-top: 2vw;
 
-             }
 
-         }
 
-         .menu-text {
 
-             width: 100vw;
 
-             text-align: center;
 
-             margin-bottom: 10px;
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-bottom: 5px !important;
 
-             }
 
-         }
 
-     }
 
- }
 
- .social-icons {
 
-     position: fixed;
 
-     right: 50px;
 
-     bottom: 12.5rem;
 
-     z-index: 100;
 
-     display: flex;
 
-     flex-direction: column;
 
-     @media screen and(max-width:$table) {
 
-         right: 50px;
 
-     }
 
-     a {
 
-         text-decoration: none;
 
-         display: block;
 
-         margin-bottom: 10px;
 
-     }
 
-     img {
 
-         width: 15px;
 
-         height: 15px;
 
-         object-fit: cover;
 
-     }
 
- }
 
- .banner {
 
-     padding-top: 7vw;
 
-     background: url(./img/bg.png);
 
-     background-repeat: no-repeat;
 
-     background-size: cover;
 
-     @media screen and(min-width:768px) {
 
-         padding-top: 10vw;
 
-     }
 
-     #scene{
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-     }
 
-     #banner-des {
 
-        
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-     }
 
-     #banner-m {
 
-         // 更動
 
-         @media screen and(min-width:768px) {
 
-             display: none;
 
-         }
 
-         @media screen and(min-width:$desktop) {
 
-             display: none;
 
-         }
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         padding-top: 20vw;
 
-     }
 
-     .banner-content {
 
-         width: 62vw;
 
-         margin: 0 auto;
 
-         @media screen and(max-width:$moblie) {
 
-             width: 95vw;
 
-         }
 
-         .banner-title {
 
-             margin-top: 8vw;
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-top: 20vw;
 
-             }
 
-             #title-des {
 
-                 animation-name: title;
 
-                 animation-duration: 2s;
 
-                 animation-delay: 0.5s;
 
-                 @media screen and(max-width:$moblie) {
 
-                     display: none;
 
-                 }
 
-             }
 
-             #title-m {
 
-                 @media screen and(min-width:768px) {
 
-                     display: none;
 
-                 }
 
-                 @media screen and(min-width:$desktop) {
 
-                     display: none;
 
-                 }
 
-             }
 
-         }
 
-         .banner-text {
 
-             margin-top: 25px;
 
-             p {
 
-                 text-align: center;
 
-                 color: #868686;
 
-                 margin-bottom: 3px !important;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .banner-text-m {
 
-             margin-top: 25px;
 
-             p {
 
-                 text-align: center;
 
-                 color: #868686;
 
-                 margin-bottom: 3px !important;
 
-                 font-size: 3.6vmin;
 
-             }
 
-             // 更動
 
-             @media screen and(min-width:768px) {
 
-                 display: none;
 
-             }
 
-             @media screen and(min-width:$desktop) {
 
-                 display: none;
 
-             }
 
-         }
 
-     }
 
- }
 
- .sec01-title-des {
 
-     @media screen and(max-width:$moblie) {
 
-         display: none;
 
-     }
 
- }
 
- .sec01-title-m {
 
-     @media screen and(min-width:768px) {
 
-         display: none;
 
-     }
 
-     @media screen and(min-width:$desktop) {
 
-         display: none;
 
-     }
 
- }
 
- .sec01,
 
- .sec01-int {
 
-     .sec01-content {
 
-         width: 72vw;
 
-         margin: 0 auto;
 
-         padding-bottom: 10vw;
 
-         @media screen and(max-width:$table) {
 
-             width: 80vw;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             width: 95vw;
 
-         }
 
-         .sec01-h1-title {
 
-             position: relative;
 
-             .line31 {
 
-                 position: absolute;
 
-                 left: 5.5vw;
 
-                 top: 15vw;
 
-                 @media screen and(max-width:$table) {
 
-                     left: 9.5vw;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     display: none;
 
-                 }
 
-             }
 
-         }
 
-         h1 {
 
-             writing-mode: vertical-lr;
 
-             font-weight: bold;
 
-             color: $Font-color;
 
-             font-size: 45px;
 
-             letter-spacing: 10px;
 
-             text-shadow: 0px 8px 6px #00000029;
 
-             @media screen and(max-width:$moblie) {
 
-                 writing-mode: horizontal-tb;
 
-                 font-size: 7vmin;
 
-                 letter-spacing: 0px;
 
-                 text-align: center;
 
-             }
 
-         }
 
-         h2 {
 
-             font-size: 3vmin;
 
-             color: $Font-color;
 
-             text-shadow: 0px 8px 6px #00000029;
 
-             @media screen and(max-width:$moblie) {
 
-                 font-size: 5.5vmin;
 
-             }
 
-         }
 
-         .sec01-text {
 
-             margin-top: 10px;
 
-         }
 
-         p {
 
-             color: $text-color;
 
-             line-height: 2;
 
-             font-size: 1.9vmin;
 
-             @media screen and(max-width:$moblie) {
 
-                 font-size: 4vmin;
 
-             }
 
-         }
 
-         // 大坪數
 
-         #sec01-card1 {
 
-             position: relative;
 
-             top: 50px;
 
-             .img01-box {
 
-                 @media screen and(max-width:$moblie) {
 
-                     text-align: center;
 
-                 }
 
-             }
 
-             .sec01-img01 {
 
-                 @media screen and(max-width:$table) {
 
-                    margin-bottom: 10px;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     width: 76px;
 
-                     object-fit: cover;
 
-                     margin-bottom: 30px;
 
-                 }
 
-             }
 
-         }
 
-         // 大理石
 
-         #sec01-card2 {
 
-             margin-top: 200px;
 
-             @media screen and(max-width:$table) {
 
-                 margin-top: 100px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-top: 100px;
 
-             }
 
-             .img02-box {
 
-                 @media screen and(max-width:$moblie) {
 
-                     text-align: center;
 
-                 }
 
-             }
 
-             .sec01-img02 {
 
-                 @media screen and(max-width:$table) {
 
-                     margin-bottom: 10px;
 
-                  }
 
-                 @media screen and(max-width:$moblie) {
 
-                     width: 44px;
 
-                     object-fit: cover;
 
-                     margin-bottom: 30px;
 
-                 }
 
-             }
 
-         }
 
-         // 奢華家具
 
-         #sec01-card3 {
 
-             position: relative;
 
-             top: 90px;
 
-             left: 50px;
 
-             
 
-             @media screen and(max-width:$moblie) {
 
-                 left: 0px;
 
-                 top: 90px;
 
-             }
 
-             .img03-box {
 
-                 @media screen and(max-width:$moblie) {
 
-                     text-align: center;
 
-                 }
 
-             }
 
-             .sec01-img03 {
 
-                 @media screen and(max-width:$table) {
 
-                     margin-bottom: 10px;
 
-                  }
 
-                 @media screen and(max-width:$moblie) {
 
-                     width: 53px;
 
-                     object-fit: cover;
 
-                     margin-bottom: 30px;
 
-                 }
 
-             }
 
-         }
 
-         // 藝術品
 
-         #sec01-card4 {
 
-             position: relative;
 
-             top: 250px;
 
-             left: 50px;
 
-             @media screen and(max-width:$table) {
 
-                 top: 150px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 left: 0px;
 
-                 top: 150px;
 
-             }
 
-             .img04-box {
 
-                 @media screen and(max-width:$moblie) {
 
-                     text-align: center;
 
-                 }
 
-             }
 
-             .sec01-img04 {
 
-                 @media screen and(max-width:$table) {
 
-                     margin-bottom: 10px;
 
-                  }
 
-                 @media screen and(max-width:$moblie) {
 
-                     width: 36px;
 
-                     object-fit: cover;
 
-                     margin-bottom: 30px;
 
-                 }
 
-             }
 
-         }
 
-     }
 
- }
 
- // sec02桌機板
 
- .sec02 {
 
-     background: url(./img/sec02/sec02-bg.png);
 
-     background-repeat: no-repeat;
 
-     background-size: cover;
 
-     @media screen and(max-width:$moblie) {
 
-         display: none;
 
-     }
 
-     .sec02-content {
 
-         margin-top: -210px;
 
-         @media screen and(max-width:$table) {
 
-             margin-top: -150px;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             margin-top: 0px;
 
-         }
 
-         .sec02-img {
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .sec02-img-m {
 
-             @media screen and(min-width:768px) {
 
-                 display: none;
 
-             }
 
-             @media screen and(min-width:$desktop) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .object178 {
 
-             width: 250px;
 
-             z-index: 30;
 
-             top: -5vw;
 
-             left: 4.5vw;
 
-             @media screen and(max-width:$table) {
 
-                 width: 150px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .object188 {
 
-             width: 180px;
 
-             left: 42vw;
 
-             @media screen and(max-width:$table) {
 
-                 width: 100px;
 
-             }
 
-         }
 
-         .object404 {
 
-             top:240px;
 
-              z-index: 1; 
 
-              width:52vw;
 
-             @media screen and(max-width:$table) {
 
-                 top:140px;
 
-             }
 
-         }
 
-         // 世界豪宅趨勢
 
-         .sec02-right {
 
-             margin-top: 120px;
 
-             margin-left: 80px;
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-left: 0px;
 
-             }
 
-         }
 
-         // 豪宅的條件
 
-         .sec02-left-d {
 
-             margin-top: 50px;
 
-             @media screen and(max-width:$table) {
 
-                 margin-top: -50px;
 
-             }
 
-         }
 
-         // 類豪宅剖析
 
-         .sec02-right-d {
 
-             position: relative;
 
-             bottom: -100px;
 
-             left: -15vmin;
 
-             z-index: 20;
 
-             @media screen and(max-width:$table) {
 
-                 bottom: -200px;
 
-             }
 
-             .luxury-text{
 
-                 width: 400px;
 
-                 line-height: 2;
 
-             }
 
-             
 
-         }
 
-         // 介紹內容
 
-         .sec02-int {
 
-             h3 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 font-size: 20px;
 
-             }
 
-             h1 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 text-shadow: 0px 8px 6px #00000029;
 
-                 padding-bottom: 15px;
 
-             }
 
-             .sec02-text {
 
-                 color: $text-color;
 
-                 p {
 
-                     margin-bottom: 5px;
 
-                 }
 
-             }
 
-             h4 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 text-shadow: 0px 8px 6px #00000029;
 
-                 padding-bottom: 15px;
 
-             }
 
-         }
 
-         .sec02-content-down {
 
-             margin-left: 30vmin;
 
-             padding-bottom: 3vw;
 
-             @media screen and(max-width:$table) {
 
-                 margin-left: 5vmin;
 
-             }
 
-         }
 
-     }
 
- }
 
- // sec02手機板
 
- .sec02-m {
 
-     background: url(./img/sec02/sec02-bg.png);
 
-     background-repeat: no-repeat;
 
-     background-size: cover;
 
-     @media screen and(min-width:768px) {
 
-         display: none;
 
-     }
 
-     @media screen and(min-width:$desktop) {
 
-         display: none;
 
-     }
 
-     .sec02-content {
 
-         margin-top: -210px;
 
-         padding-bottom: 10vw;
 
-         @media screen and(max-width:$moblie) {
 
-             margin-top: 0px;
 
-         }
 
-         .object188-m{
 
-             width: 100px;
 
-             left:22vw;
 
-             z-index: 1;
 
-         }
 
-         .sec02-img {
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .sec02-img-m {
 
-             @media screen and(min-width:$desktop) {
 
-                 display: none;
 
-             }
 
-         }
 
-         // 世界豪宅趨勢
 
-         .sec02-right {
 
-             margin-top: 120px;
 
-             margin-left: 80px;
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-left: 0px;
 
-             }
 
-         }
 
-         // 豪宅的條件
 
-         .sec02-left-d {
 
-             margin-top: 50px;
 
-             margin-bottom: 30px;
 
-             
 
-         }
 
-         // 類豪宅剖析
 
-         // 介紹內容
 
-         .sec02-int {
 
-             h3 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 font-size: 16px;
 
-             }
 
-             h1 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 text-shadow: 0px 8px 6px #00000029;
 
-                 padding-bottom: 15px;
 
-                 font-size: 8vmin;
 
-             }
 
-             .sec02-text {
 
-                 color: $text-color;
 
-                 p {
 
-                     margin-bottom: 5px;
 
-                     font-size: 3.8vmin;
 
-                 }
 
-             }
 
-             h4 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 text-shadow: 0px 8px 6px #00000029;
 
-                 padding-bottom: 15px;
 
-             }
 
-         }
 
-         .sec02-content-down {
 
-             margin-left: 30vmin;
 
-             padding-bottom: 3vw;
 
-         }
 
-     }
 
- }
 
- .sec03-big{
 
-     position: relative;
 
-     .object182-m{
 
-         width: 250px;
 
-         right:-30vw;
 
-         top:180px;
 
-     }
 
- }
 
- .sec03 {
 
-     margin-top: -320px;
 
-     position: relative;
 
-     bottom: -160px;
 
-     z-index: 19;
 
-     @media screen and(max-width:$table) {
 
-         margin-top: -120px;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: -50px;
 
-         bottom: 0px;
 
-     }
 
-     .sec03-img01 {
 
-         position: relative;
 
-         z-index: 3;
 
-         width: 57vw;
 
-         object-fit: cover;
 
-         @media screen and(max-width:$table) {
 
-             width: 65vw;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             width: 70vw;
 
-         }
 
-     }
 
-     .sec03-img02 {
 
-         position: absolute;
 
-         top: 100px;
 
-         width: 85vw;
 
-         z-index: 1;
 
-         @media screen and(max-width:$table) {
 
-             top: 40px;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-            top:30px;
 
-            width: 95vw;
 
-         }
 
-     }
 
-     #sec03-img03-box {
 
-         position: relative;
 
-         top: 300px;
 
-         @media screen and(max-width:$table) {
 
-             top: 60px;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-            top:10px;
 
-          }
 
-         .sec03-img03 {
 
-             width: 83vw;
 
-         }
 
-     }
 
-     .sec03img-des {
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-     }
 
-     .sec03img-m {
 
-         @media screen and(min-width:$desktop) {
 
-             display: none;
 
-         }
 
-     }
 
-  
 
- }
 
- .sec04 {
 
-     margin-top: 200px;
 
-     background: url(./img/bg.png);
 
-     background-repeat: no-repeat;
 
-     background-size: cover;
 
-     @media screen and(max-width:$table) {
 
-         margin-top: 50px;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: 10px;
 
-     }
 
-     .sec04-content {
 
-         position: relative;
 
-         padding-top: 100px;
 
-         width: 67vw;
 
-         margin: 0 auto;
 
-         @media screen and(max-width:$moblie) {
 
-             width: 95vw;
 
-             padding-bottom: 30px;
 
-             padding-top: 0px;
 
-         }
 
-         .object182 {
 
-             width: 450px;
 
-             top: -7vw;
 
-             left: -10vw;
 
-             @media screen and(max-width:$table) {
 
-                 width: 300px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                width: 250px;
 
-                left:64vw;
 
-                top:-30vw;
 
-             }
 
-         }
 
-         #issue3 {
 
-             left: 33%;
 
-             @media screen and(max-width:$table) {
 
-                 left: 27%;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 left: 20%;
 
-             }
 
-         }
 
-         .sec04-bottom-box {
 
-             margin: 0 auto;
 
-             text-align: center;
 
-             @media screen and(min-width:768px) {
 
-                 width: 70vw;
 
-             }
 
-             @media screen and(min-width:$desktop) {
 
-                 width: 40vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 95vw;
 
-                 padding: 5px;
 
-             }
 
-             p {
 
-                 font-size: 14px;
 
-                 color: $Font-color;
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 12px;
 
-                     margin-bottom: 3px;
 
-                     line-height: 2;
 
-                 }
 
-             }
 
-         }
 
-         .NewLuxuryLife {
 
-             h1 {
 
-                 font-size: 3.5rem;
 
-                 font-family: 追奇手寫體;
 
-                 color: $Font-color;
 
-                 transform: rotate(-2deg);
 
-             }
 
-             hr {
 
-                 background: $Font-color;
 
-                 width: 60px;
 
-                 height: 3px;
 
-                 margin: 10px auto;
 
-                 opacity: 1 !important;
 
-             }
 
-         }
 
-         .sec04-int {
 
-             h3 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 font-size: 20px;
 
-             }
 
-             h1 {
 
-                 color: $Font-color;
 
-                 font-weight: bold;
 
-                 text-shadow: 0px 8px 6px #00000029;
 
-                 padding-bottom: 15px;
 
-             }
 
-             .sec04-text {
 
-                 color: $text-color;
 
-                 width: 38vw;
 
-                 margin: 0 auto;
 
-                 @media screen and(max-width:$table) {
 
-                     width: 70vw;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     width: 95vw;
 
-                 }
 
-                 p {
 
-                     margin-bottom: 5px;
 
-                     font-size: 16px;
 
-                 }
 
-             }
 
-         }
 
-         .sec04-designers {
 
-             .object241 {
 
-                 width: 200px;
 
-                 left: -8vw;
 
-                 z-index: 0;
 
-                 top: 18vw;
 
-                 @media screen and(max-width:$table) {
 
-                     display: none;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     display: none;
 
-                 }
 
-             }
 
-             .object242{
 
-                 width: 200px;
 
-                 right:-6vw;
 
-                 top:18vw;
 
-                 z-index: 1;
 
-                 @media screen and(max-width:$table) {
 
-                     display: none;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     display: none;
 
-                 }
 
-             }
 
-             .sec04-right-card {
 
-                 margin-top: 30px;
 
-                 @media screen and(max-width:$moblie) {
 
-                     margin-top: -50px;
 
-                 }
 
-                 .designer-btn {
 
-                     position: relative;
 
-                     top: -35px;
 
-                     left: 140px;
 
-                     transition: 0.3s;
 
-                     @media screen and(max-width:$moblie) {
 
-                         left: 15px;
 
-                     }
 
-                 }
 
-             }
 
-             .sec04-left-card {
 
-             
 
-                 .designer-btn {
 
-                     position: relative;
 
-                     top: -35px;
 
-                     left: 30px;
 
-                     @media screen and(max-width:$moblie) {
 
-                         left: 15px;
 
-                     }
 
-                 }
 
-             }
 
-             .sec04-right-card,
 
-             .sec04-left-card {
 
-                 position: relative;
 
-                 z-index: 3;
 
-                 img {
 
-                     transition: 0.5s;
 
-                 }
 
-                 &:hover {
 
-                     img {
 
-                         transform: scale(1.1);
 
-                     }
 
-                 }
 
-                 .designer-btn {
 
-                     width: 250px;
 
-                     background: #f6ded2;
 
-                     color: $Font-color;
 
-                     transition: 0.3s;
 
-                     .arrow-img {
 
-                         filter: invert(45%) sepia(1%) saturate(2047%) hue-rotate(329deg) brightness(95%) contrast(83%);
 
-                     }
 
-                     .arrow-right {
 
-                         float: right;
 
-                         position: relative;
 
-                         left: 50px;
 
-                         top: -50px;
 
-                         background: #f6ded2;
 
-                     }
 
-                     &:hover {
 
-                         color: #fff;
 
-                         background: #f9a094;
 
-                         .arrow-img {
 
-                             filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(356deg) brightness(102%)
 
-                                 contrast(102%);
 
-                         }
 
-                         .arrow-right {
 
-                             background: #f9a094;
 
-                         }
 
-                     }
 
-                     @media screen and(max-width:$moblie) {
 
-                         width: 210px;
 
-                     }
 
-                     .designer-name {
 
-                         padding: 10px 0px;
 
-                         span {
 
-                             padding-left: 20px;
 
-                             font-size: 20px;
 
-                             @media screen and(max-width:$moblie) {
 
-                                 font-size: 15px;
 
-                                 padding-left: 15px;
 
-                             }
 
-                         }
 
-                         p {
 
-                             font-size: 14px;
 
-                             @media screen and(max-width:$moblie) {
 
-                                 font-size: 12px;
 
-                             }
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-         }
 
-     }
 
- }
 
- #sec04-2 {
 
-     @media screen and(min-width:$desktop) {
 
-         margin-top: -320px;
 
-     }
 
-     @media screen and(max-width:$table) {
 
-         margin-top: -150px;
 
-      }
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: -90px;
 
-     }
 
- }
 
- .gotop {
 
-     @media screen and(min-width:768px) {
 
-         display: none;
 
-      }
 
-     @media screen and(min-width:$desktop) {
 
-         display: none;
 
-     }
 
- }
 
- .gotop2 {
 
-     @media screen and(max-width:$moblie) {
 
-         display: none;
 
-     }
 
- }
 
- #footer {
 
-     background: #f6ded2;
 
-     text-align: center;
 
-     p {
 
-         padding: 15px;
 
-         color: #fff;
 
-         text-shadow: 0 1px 5px rgb(179,135,114);
 
-     }
 
- }
 
- .designer-content {
 
-     position: relative;
 
-     width: 80vw;
 
-     margin: 0 auto;
 
-     @media screen and(max-width:$moblie) {
 
-         width: 95vw;
 
-     }
 
-     #hr01 {
 
-         position: relative;
 
-         bottom: 18vw;
 
-         z-index: 3;
 
-         hr {
 
-             background-color: $Font-color;
 
-             position: absolute;
 
-             width: 100%;
 
-             opacity: 1 !important;
 
-         }
 
-         @media screen and(max-width:$table) {
 
-             bottom: 17vw;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             bottom: 450px;
 
-             opacity: 1;
 
-             z-index: 3;
 
-         }
 
-     }
 
-     #hr02 {
 
-         position: relative;
 
-         bottom: 18vw;
 
-         z-index: 3;
 
-         hr {
 
-             background-color: $Font-color;
 
-             position: absolute;
 
-             width: 100%;
 
-             opacity: 1 !important;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             bottom: 420px;
 
-             opacity: 1;
 
-             z-index: 6;
 
-         }
 
-     }
 
-     #hr03 {
 
-         position: relative;
 
-         bottom: 20vw;
 
-         z-index: 3;
 
-         hr {
 
-             background-color: $Font-color;
 
-             position: absolute;
 
-             width: 100%;
 
-             opacity: 1 !important;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             bottom: 420px;
 
-             opacity: 1;
 
-             z-index: 6;
 
-         }
 
-         @media screen and(max-width:350px) {
 
-             bottom: 360px;
 
-             opacity: 1;
 
-             z-index: 6;
 
-         }
 
-     }
 
-     #hr04 {
 
-         position: relative;
 
-         bottom: 14vw;
 
-         z-index: 3;
 
-         hr {
 
-             background-color: $Font-color;
 
-             position: absolute;
 
-             width: 100%;
 
-             opacity: 1 !important;
 
-         }
 
-         @media screen and(max-width:$table) {
 
-             bottom: 12vw;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             bottom: 380px;
 
-             opacity: 1;
 
-             z-index: 6;
 
-         }
 
-         @media screen and(max-width:350px) {
 
-             bottom: 310px;
 
-             opacity: 1;
 
-             z-index: 6;
 
-         }
 
-     }
 
-     .designer-img {
 
-         position: relative;
 
-         .img-01 {
 
-             position: relative;
 
-             z-index: 5;
 
-             width: 32vw;
 
-             object-fit: cover;
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .img-01-m {
 
-             position: relative;
 
-             z-index: 5;
 
-             left: 18px;
 
-             @media screen and(min-width:768px) {
 
-                 display: none;
 
-             }
 
-             @media screen and(min-width:$desktop) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .object1 {
 
-             width: 15vw;
 
-             position: absolute;
 
-             top: 10vw;
 
-             left: 10vw;
 
-               
 
-             @media screen and(max-width:$table) {
 
-                 left: 8vw;
 
-                 top: 12vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 top: 20vw;
 
-                 width: 150px;
 
-                 left: 15vw;
 
-             }
 
-         }
 
-         .designertext {
 
-             color: $Font-color;
 
-             position: absolute;
 
-             z-index: 5;
 
-             top: 200px;
 
-             left: 8vmin;
 
-               
 
-             @media screen and(max-width:$table) {
 
-                 left: 1vmin;
 
-                 top: 80px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 left: 4vmin;
 
-                 top: 100px;
 
-             }
 
-             h1 {
 
-                 font-size: 45px;
 
-                 @media screen and(max-width:$table) {
 
-                     font-size: 32px;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10vmin;
 
-                 }
 
-             }
 
-             p {
 
-                 font-size: 12px;
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10px;
 
-                     transform: scale(0.8);
 
-                 }
 
-             }
 
-         }
 
-         // 盧慧珊設計師
 
-         .designertext02 {
 
-             color: $Font-color;
 
-             position: absolute;
 
-             top: 100px;
 
-             right: 5vmin;
 
-             z-index: 5;
 
-             @media screen and(max-width:$table) {
 
-                 right: -1vmin;
 
-                 top: 60px;          
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 top: 70px;
 
-                 right: 5vw;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: 1vw;
 
-             }
 
-             h1 {
 
-                 font-size: 45px;
 
-                 @media screen and(max-width:$table) {
 
-                     font-size: 32px;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10vmin;
 
-                 }
 
-             }
 
-             p {
 
-                 font-size: 12px;
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10px;
 
-                     transform: scale(0.8);
 
-                 }
 
-             }
 
-         }
 
-         .img-02 {
 
-             position: relative;
 
-             z-index: 5;
 
-             width: 35vw;
 
-             @media screen and(max-width:$table) {
 
-                 margin-top: 15px;
 
-                 right:30px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         .img-02-m {
 
-             width: 300px;
 
-             object-fit: cover;
 
-             position: relative;
 
-             z-index: 7;
 
-             right: 50px;
 
-             @media screen and(min-width:768px) {
 
-                 display: none;
 
-             }
 
-             @media screen and(min-width:$desktop) {
 
-                 display: none;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: 23px;
 
-             }
 
-         }
 
-         .object2 {
 
-             width: 15vw;
 
-             position: absolute;
 
-             top: 8vw;
 
-             right: 4vw;
 
-             @media screen and(max-width:$table) {
 
-                 right: 3vw;
 
-                 top: 8vw;
 
-                 width: 17vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 140px;
 
-                 right: 5vw;
 
-                 top: 18vw;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: 1vw;
 
-             }
 
-         }
 
-         // 鄧相盈設計師
 
-         .designertext03 {
 
-             color: $Font-color;
 
-             position: absolute;
 
-             top: 100px;
 
-             right: 2vmin;
 
-             z-index: 5;
 
-             @media screen and(max-width:$table) {
 
-                 right: -1vmin;
 
-                 top: 80px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 right: -5px;
 
-                 top: 90px;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: -5px;
 
-                 top: 70px;
 
-             }
 
-             h1 {
 
-                 font-size: 45px;
 
-                 @media screen and(max-width:$table) {
 
-                     font-size: 32px;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10vmin;
 
-                 }
 
-                 @media screen and(max-width:350px) {
 
-                     font-size: 8vmin;
 
-                 }
 
-             }
 
-             p {
 
-                 font-size: 12px;
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10px;
 
-                     transform: scale(0.8);
 
-                 }
 
-             }
 
-         }
 
-         .img-03 {
 
-             width: 33vw;
 
-             position: relative;
 
-             z-index: 7;
 
-             @media screen and(max-width:$table) {
 
-                 right:30px;
 
-                 margin-top: 15px;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 300px;
 
-                 right: 20px;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 width: 250px;
 
-                 right: 30px;
 
-             }
 
-         }
 
-         .object3 {
 
-             width: 15vw;
 
-             position: absolute;
 
-             top: 8vw;
 
-             right: 4vw;
 
-             @media screen and(max-width:$table) {
 
-                 top: 11vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 140px;
 
-                 right: 5vw;
 
-                 top: 23vw;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: 10vw;
 
-                 width: 120px;
 
-             }
 
-         }
 
-         // 李宜蔓
 
-         .designertext04 {
 
-             color: $Font-color;
 
-             position: absolute;
 
-             top: 250px;
 
-             left: 5vmin;
 
-             z-index: 5;
 
-             @media screen and(max-width:$table) {
 
-                 top: 150px;
 
-                 left:3vmin;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 top: 220px;
 
-                 left: 40px;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 left: 15px;
 
-                 top: 200px;
 
-             }
 
-             h1 {
 
-                 font-size: 45px;
 
-                 @media screen and(max-width:$table) {
 
-                     font-size: 32px;
 
-                 }
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10vmin;
 
-                 }
 
-             }
 
-             p {
 
-                 font-size: 12px;
 
-                 @media screen and(max-width:$moblie) {
 
-                     font-size: 10px;
 
-                     transform: scale(0.8);
 
-                 }
 
-             }
 
-         }
 
-         .object4 {
 
-             width: 15vw;
 
-             position: absolute;
 
-             top: 8vw;
 
-             left: 10vw;
 
-             @media screen and(max-width:$table) {
 
-                 left: 10vw;
 
-                 top: 11vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 140px;
 
-                 left: 15vw;
 
-                 top: 30vw;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 left: 10vw;
 
-             }
 
-         }
 
-         .img-04 {
 
-             width: 25vw;
 
-             position: relative;
 
-             z-index: 7;
 
-             @media screen and(max-width:$table) {
 
-                 top: 2vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 right: -10px;
 
-                 width: 260px;
 
-             }
 
-             @media screen and(max-width:350px) {
 
-                 right: -10px;
 
-                 width: 230px;
 
-             }
 
-         }
 
-     }
 
-     .video {
 
-         color: $Font-color;
 
-         position: relative;
 
-         background-size: contain;
 
-         background-repeat: no-repeat;
 
-         margin-top: 100px;
 
-         @media screen and(max-width:$table) {
 
-             margin-top: 80px;
 
-          }
 
-         @media screen and(max-width:$moblie) {
 
-             background-size: cover;
 
-             margin-top: 30px;
 
-             height: 55vw;
 
-         }
 
-         .playbutton {
 
-             margin-top: 120px;
 
-             @media screen and(max-width:$table) {
 
-                 width: 50px;
 
-                 margin-top: 70px;
 
-              }
 
-             @media screen and(max-width:$moblie) {
 
-                 margin-top: 20vw;
 
-             }
 
-         }
 
-         // 郁秀秀設計師
 
-         .work-text {
 
-             position: absolute;
 
-             bottom: 10vw;
 
-             font-size: 20px;
 
-             @media screen and(max-width:$table) {
 
-                 bottom: 5vw;
 
-              }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         // 盧慧珊設計師
 
-         .work-text2 {
 
-             position: absolute;
 
-             bottom: 10vw;
 
-             font-size: 20px;
 
-             @media screen and(max-width:$table) {
 
-                 bottom: 3vw;
 
-              }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         //鄧相盈設計師
 
-         .work-text3 {
 
-             position: absolute;
 
-             bottom: 10vw;
 
-             font-size: 20px;
 
-             @media screen and(max-width:$table) {
 
-                 bottom: 3vw;
 
-              }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-         // 李宜蔓
 
-         .work-text4 {
 
-             position: absolute;
 
-             bottom: 7vw;
 
-             font-size: 20px;
 
-             @media screen and(max-width:$table) {
 
-                 bottom: -1vw;
 
-              }
 
-             @media screen and(max-width:$moblie) {
 
-                 display: none;
 
-             }
 
-         }
 
-     }
 
- }
 
- // 電腦版logo
 
- .inclogo {
 
-     @media screen and(max-width:$moblie) {
 
-         display: none;
 
-     }
 
- }
 
- // 手機板logo
 
- .inclogo-m {
 
-     @media screen and(max-width:$table) {
 
-         display: none;
 
-     }
 
-     @media screen and(min-width:$desktop) {
 
-         display: none;
 
-     }
 
-     .inclogo02 {
 
-         width: 300px;
 
-         @media screen and(max-width:$moblie) {
 
-             width: 110px;
 
-         }
 
-     }
 
- }
 
- // 方形logo
 
- .inclogo3 {
 
-     width: 180px;
 
-     @media screen and(max-width:$table) {
 
-         width: 130px;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         width: 110px;
 
-     }
 
- }
 
- // 盧慧珊設計師
 
- #designer2 {
 
-     padding-bottom: 10vw;
 
- }
 
- #designer3 {
 
-     padding-bottom: 10vw;
 
- }
 
- #designer2-sec01 {
 
-     margin-top: -200px;
 
-     @media screen and(max-width:$table) {
 
-         margin-top: -150px;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: 0px;
 
-     }
 
- }
 
- #designer4-sec01{
 
-     @media screen and(max-width:$table) {
 
-         margin-top: -50px;
 
-     }
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: 0px;
 
-     }
 
- }
 
- .sec01-int {
 
-     margin-top: -110px;
 
-     padding-bottom: 5vw;
 
-   
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: 0px;
 
-     }
 
-     .sec01-content {
 
-         p {
 
-             @media screen and(max-width:$moblie) {
 
-                 font-weight: 900;
 
-             }
 
-         }
 
-         .slogan-part1 {
 
-             width: 35vw;
 
-             margin: 0 auto;
 
-             @media screen and(max-width:$table) {
 
-                 margin-top: 30px;
 
-                 width: 50vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 90vw;
 
-             }
 
-         }
 
-         .slogan-part2 {
 
-             width: 20vw;
 
-             margin: 0 auto;
 
-             @media screen and(max-width:$table) {
 
-                width: 35vw;
 
-             }
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 90vw;
 
-             }
 
-         }
 
-         .slogan-part3 {
 
-             width: 60vw;
 
-             margin: 0 auto;
 
-             @media screen and(max-width:$moblie) {
 
-                 width: 90vw;
 
-             }
 
-         }
 
-     }
 
-     //電腦版作品集
 
-     .protfolio-des {
 
-         h1 {
 
-             writing-mode: horizontal-tb;
 
-             font-size: 28px;
 
-             letter-spacing: 0px;
 
-         }
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-     }
 
-     .protfolio-m {
 
-         padding-top: 30vw;
 
-         @media screen and(min-width:768px) {
 
-             display: none;
 
-         }
 
-         @media screen and(min-width:$desktop) {
 
-             display: none;
 
-         }
 
-         h1 {
 
-             color: $text-color !important;
 
-             text-shadow: none;
 
-         }
 
-     }
 
-     .gotop2 {
 
-         @media screen and(max-width:$moblie) {
 
-             display: none;
 
-         }
 
-     }
 
- }
 
- .Portfolio-img {
 
-     margin-top: 8vw;
 
-     @media screen and(max-width:$moblie) {
 
-         margin-top: 50vw;
 
-     }
 
- }
 
- .designer-nav {
 
-     width: 120px;
 
-     right: 130px;
 
-     top: 65px;
 
-     position: fixed;
 
-     z-index: 20;
 
-     box-shadow: 0px 3px 20px #00000029;
 
-     display: none;
 
-     @media screen and(max-width:$table) {
 
-         right: 10px;
 
-     }
 
-     hr {
 
-         margin: 5px auto !important;
 
-         background: #e2e2e2;
 
-         opacity: 1 !important;
 
-         width: 80%;
 
-     }
 
-     .nav-box {
 
-         padding-bottom: 1vw;
 
-         position: relative;
 
-         width: 120px;
 
-         background-color: #fbf6f3;
 
-         z-index: 7;
 
-         text-align: center;
 
-         a {
 
-             display: inline-block;
 
-             text-decoration: none;
 
-             color: #707070 !important;
 
-             font-size: 18px;
 
-             font-weight: 900;
 
-             text-align: center;
 
-             margin: 5px;
 
-             padding: 0 !important;
 
-         }
 
-     }
 
- }
 
- @keyframes title {
 
-     0% {
 
-         opacity: 0;
 
-     }
 
-     100% {
 
-         opacity: 1;
 
-     }
 
- }
 
- .arrow-wave {
 
-     display: inline-block;
 
-     cursor: pointer;
 
-     margin: 0 auto;
 
-     font-size: 0;
 
-     /*   background-color: rgba(100,100,100,0.4); */
 
- }
 
- .arrow-wave span {
 
-     display: block;
 
-     position: relative;
 
-     height: 10px;
 
-     width: 16px;
 
-     /*   background-color: rgba(100,100,100,0.4); */
 
-     opacity: 0.2;
 
- }
 
- .arrow-wave span::before,
 
- .arrow-wave span::after {
 
-     display: block;
 
-     content: "";
 
-     position: absolute;
 
-     height: 2px;
 
-     width: 12px;
 
-     background-color: #fff;
 
- }
 
- .arrow-wave span::before {
 
-     top: -2px;
 
-     left: 0;
 
-     transform-origin: left center;
 
-     transform: rotate(45deg);
 
- }
 
- .arrow-wave span::after {
 
-     top: -2px;
 
-     right: 0;
 
-     transform-origin: right center;
 
-     transform: rotate(-45deg);
 
- }
 
- .arrow-wave span:nth-child(1n) {
 
-     animation: animate-arrow-wave 2s infinite;
 
-     animation-delay: 0.25s;
 
- }
 
- .arrow-wave span:nth-child(2n) {
 
-     animation: animate-arrow-wave 2s infinite;
 
-     animation-delay: 0.5s;
 
- }
 
- .arrow-wave span:nth-child(3n) {
 
-     animation: animate-arrow-wave 2s infinite;
 
-     animation-delay: 0.75s;
 
- }
 
- @keyframes animate-arrow-wave {
 
-     0% {
 
-         opacity: 0.2;
 
-     }
 
-     25% {
 
-         opacity: 0.2;
 
-     }
 
-     50% {
 
-         opacity: 0.2;
 
-     }
 
-     75% {
 
-         opacity: 1;
 
-     }
 
-     100% {
 
-         opacity: 0.2;
 
-     }
 
- }
 
- // 文字動畫
 
- .test {
 
-     position: relative;
 
- }
 
- // 圖片動畫
 
- .test .cover, .test .p_cover, .test .b_cover {
 
-     width: 99.9%;
 
-     position: absolute;
 
-     z-index: 4;
 
-     bottom: 2.5vw;
 
-     display: block;
 
-     background-color: #fff;
 
-     transform: skewX(6deg) rotate(6deg);
 
-     height: 86%;
 
- }
 
- .test2 .cover2 {
 
-     width: 56.7vw;
 
-     position: absolute;
 
-     z-index: 4;
 
-     right: 2.7px;
 
-     bottom: 2.9vw;
 
-     display: block;
 
-     background-color: #fff;
 
-     transform: skewX(6deg) rotate(6deg);
 
-     height: 80%;
 
- }
 
- // 圖片動畫
 
- .test .cover.slidein, .test .p_cover.slidein, .test .b_cover.slidein {
 
-     -webkit-animation: slidein 1.5s forwards;
 
-     animation: slidein 1.5s forwards;
 
- }
 
- .test2 .cover2.slidein2 {
 
-     -webkit-animation: slidein 2s forwards;
 
-     animation: slidein 2s forwards;
 
- }
 
- .title_back {
 
-     display: block;
 
-     position: relative;
 
-     width: 100%;
 
-     height: 100px;
 
-     overflow: hidden;
 
- }
 
- .title_back .title {
 
-     position: absolute;
 
-     left: 0;
 
-     bottom: -1.75em;
 
-     display: block;
 
-     -webkit-transition: all 1s;
 
-     transition: all 1s;
 
- }
 
- .test_content {
 
-     opacity: 0;
 
- }
 
- .test_content.fadein {
 
-     -webkit-animation: fadein 2s forwards;
 
-     animation: fadein 2s forwards;
 
- }
 
- @-webkit-keyframes slidein {
 
-     100% {
 
-         height: 0px;
 
-     }
 
- }
 
- @keyframes slidein {
 
-     100% {
 
-         height: 0px;
 
-     }
 
- }
 
- @-webkit-keyframes slidein2 {
 
-     100% {
 
-         height: 0px;
 
-     }
 
- }
 
- @keyframes slidein2 {
 
-     100% {
 
-         height: 0px;
 
-     }
 
- }
 
- @-webkit-keyframes fadein {
 
-     0% {
 
-         opacity: 0;
 
-     }
 
-     100% {
 
-         opacity: 1;
 
-     }
 
- }
 
- @keyframes fadein {
 
-     0% {
 
-         opacity: 0;
 
-     }
 
-     100% {
 
-         opacity: 1;
 
-     }
 
- }
 
 
  |