style.scss 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  1. body {
  2. font-family: 'Helvetica Neue';
  3. }
  4. .sec-00 {
  5. background-color: rgb(202, 202, 202);
  6. transition-property: height;
  7. transition-duration: 300ms;
  8. &__close {
  9. position: absolute;
  10. top: 0;
  11. right: 20px;
  12. width: 50px;
  13. height: 30px;
  14. background-color: hsla(0,0%,100%,.66);
  15. border-radius: 0 0 50px 50px;
  16. color: #888;
  17. border: none;
  18. outline: none;
  19. font-size: 11px;
  20. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  21. line-height: 12px;
  22. }
  23. &.bannerClose {
  24. height: 0;
  25. overflow: hidden;
  26. transition-property: height;
  27. transition-duration: 300ms;
  28. }
  29. .container-fluid {
  30. background-color: rgb(202, 202, 202);
  31. // height: 295px;
  32. // @media (max-width: 1850px) {
  33. // height: 260px;
  34. // }
  35. // @media (max-width: 1550px) {
  36. // height: 230px;
  37. // }
  38. // @media (max-width: 1100px) {
  39. // height: 200px;
  40. // }
  41. }
  42. &__slider {
  43. margin: 0 auto;
  44. width: 100%;
  45. height: 100%;
  46. max-width: 1310px;
  47. padding-top: 20px;
  48. padding-bottom: 24px;
  49. @media (max-width: 1850px) {
  50. max-width: 1310px;
  51. }
  52. @media (max-width: 1550px) {
  53. max-width: 1310px;
  54. }
  55. .slide-item {
  56. width: 100%;
  57. height: 100%;
  58. max-width: 1310px;
  59. max-height: 300px;
  60. -o-object-fit: contain;
  61. object-fit: contain;
  62. height: 300px;
  63. cursor: pointer;
  64. }
  65. }
  66. .slick-prev:before, .slick-next:before {
  67. display: none;
  68. }
  69. }
  70. @-webkit-keyframes slidein {
  71. 100% {
  72. height: 0px;
  73. }
  74. }
  75. @keyframes slidein {
  76. 100% {
  77. height: 0px;
  78. }
  79. }
  80. .navbar {
  81. box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  82. -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  83. -moz-box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  84. padding-top: 5px;
  85. padding-bottom: 5px;
  86. background-color: white !important;
  87. z-index: 99;
  88. .container-fluid {
  89. padding:0 2.5rem;
  90. @media (max-width: 1100px) {
  91. padding:0 .6rem;
  92. }
  93. }
  94. &-toggler {
  95. padding-left: 0;
  96. border-color: transparent !important;
  97. &:focus {
  98. box-shadow: none;
  99. }
  100. }
  101. &-toggler-icon {
  102. display: flex;
  103. justify-items: center;
  104. i {
  105. font-size: 25px;
  106. line-height: 30px;
  107. display: inline-block;
  108. }
  109. }
  110. &-search, &-login {
  111. padding-right: 2px;
  112. }
  113. &-login {
  114. cursor: pointer;
  115. }
  116. &-search {
  117. &-magnify {
  118. cursor: pointer;
  119. }
  120. }
  121. &-brand {
  122. font-size: 1.5rem;
  123. &.navbar-logo {
  124. display: flex;
  125. align-items: center;
  126. }
  127. .navbar-login {
  128. font-size: 1rem;
  129. color: #EE7800;
  130. text-decoration: none;
  131. }
  132. }
  133. .nav-link {
  134. cursor: pointer;
  135. @media (max-width: 1100px) {
  136. padding: .5rem .5rem;
  137. font-size: .9rem;
  138. }
  139. }
  140. .navbar-nav {
  141. .nav-item {
  142. margin: 0 .5rem;
  143. @media (max-width: 1100px) {
  144. margin: 0 0rem;
  145. }
  146. .dropbox {
  147. visibility: hidden;
  148. opacity: 0;
  149. transition: all .4s;
  150. position: absolute;
  151. width: 100vw;
  152. top: 100%;
  153. left: 0;
  154. background-color: rgba(255, 255, 255, 0.932);
  155. padding-top: 1.5rem;
  156. padding-bottom: 3rem;
  157. ul {
  158. padding-left: 0;
  159. }
  160. &-item {
  161. margin-bottom: .5rem;
  162. &.first {
  163. font-size: 1.1rem;
  164. font-weight: 600;
  165. .dropbox-link {
  166. color: black;
  167. }
  168. }
  169. }
  170. &-link {
  171. text-decoration: none;
  172. color: rgb(146, 146, 146);
  173. font-size: .85rem;
  174. &:hover {
  175. color: #EE7800;
  176. }
  177. &.dropbox-btn {
  178. border: 1px solid rgb(146, 146, 146);
  179. padding: .5rem 2rem;
  180. border-radius: 5px;
  181. width: 85%;
  182. min-width: 7rem;
  183. max-width: 11rem;
  184. }
  185. }
  186. &-btn {
  187. display: flex;
  188. align-items: center;
  189. justify-content: center;
  190. }
  191. .container {
  192. max-width: 900px;
  193. width: 70%;
  194. &.stylebox {
  195. transform: translateX(-30%);
  196. }
  197. &.designerbox {
  198. transform: translateX(-5%);
  199. }
  200. &.newbox {
  201. transform: translateX(15%);
  202. }
  203. &.forumbox {
  204. transform: translateX(50%);
  205. }
  206. }
  207. }
  208. .nav-link {
  209. position: relative;
  210. }
  211. .nav-link:after {
  212. position: absolute;
  213. content: " ";
  214. width: 100%;
  215. height: 90%;
  216. top: 0;
  217. right: 0;
  218. border-bottom: 2px solid #EE7800;
  219. opacity: 0;
  220. transform: opacity 1s;
  221. }
  222. &:hover {
  223. .nav-link:after {
  224. opacity: 1;
  225. }
  226. >.dropbox {
  227. visibility: visible;
  228. opacity: 1;
  229. }
  230. }
  231. }
  232. .nav-item.lg {
  233. .container {
  234. max-width: 1200px;
  235. width: 90%;
  236. }
  237. .dropbox-link {
  238. text-decoration: none;
  239. color: rgb(146, 146, 146);
  240. font-size: .7rem;
  241. &:hover {
  242. color: #EE7800;
  243. }
  244. }
  245. .dropbox-item {
  246. margin-bottom: .1rem;
  247. &.first {
  248. .dropbox-link {
  249. font-size: .85rem;
  250. }
  251. }
  252. }
  253. }
  254. }
  255. &-search {
  256. .container {
  257. max-width: 900px;
  258. width: 70%;
  259. @media (max-width: 1100px) {
  260. width: 90%;
  261. }
  262. }
  263. .dropbox {
  264. visibility: hidden;
  265. opacity: 0;
  266. transition: all .2s;
  267. position: absolute;
  268. width: 100vw;
  269. top: 100%;
  270. left: 0;
  271. background-color: rgba(255, 255, 255, 0.932);
  272. padding-top: 1.5rem;
  273. padding-bottom: 3rem;
  274. &.open {
  275. visibility: visible;
  276. opacity: 1;
  277. }
  278. &__searchtab {
  279. width: 100%;
  280. background-color: gray;
  281. border-radius: 3px;
  282. padding: .2rem 1rem;
  283. padding-bottom: 1rem;
  284. }
  285. &__hots {
  286. &__title {
  287. font-size: 1rem;
  288. color: rgb(107, 107, 107);
  289. }
  290. &__link {
  291. font-size: .9rem;
  292. color: rgb(146, 146, 146);
  293. text-decoration: none;
  294. cursor: pointer;
  295. margin: 0 .2rem;
  296. }
  297. }
  298. &__searchBar {
  299. &__input {
  300. width: 100%;
  301. outline: none;
  302. border: 2px solid #EE7800;
  303. border-radius: 5rem;
  304. padding: .3rem 1.2rem;
  305. font-size: .9rem;
  306. }
  307. &__submit {
  308. outline: none;
  309. border: none;
  310. font-size: .9rem;
  311. background-color: transparent;
  312. color: #EE7800;
  313. margin-left: -1rem;
  314. transform: translateX(-100%);
  315. padding: 0 .6rem;
  316. }
  317. }
  318. &__tab {
  319. .nav-item {
  320. margin: 0 .6rem;
  321. }
  322. }
  323. .nav-item-link {
  324. border: none;
  325. outline: none;
  326. font-size: 1rem;
  327. color: white;
  328. padding: 3px;
  329. position: relative;
  330. &::after {
  331. position: absolute;
  332. content: "";
  333. top: 0;
  334. left: 0;
  335. width: 100%;
  336. height: 100%;
  337. border-bottom: 3px solid #EE7800;
  338. opacity: 0;
  339. }
  340. &.active::after {
  341. opacity: 1;
  342. }
  343. }
  344. }
  345. .dropbox-tab-content {
  346. .tabpar {
  347. display: flex;
  348. padding-top: .5rem;
  349. .col {
  350. margin: 0 .6rem;
  351. }
  352. .select {
  353. font-size: 1rem;
  354. padding: .6rem;
  355. border-radius: 3px;
  356. color: rgb(116, 116, 116);
  357. }
  358. button {
  359. border: none;
  360. outline: none;
  361. background-color: #EE7800;
  362. border-radius: 3px;
  363. color: white;
  364. font-size: 1rem;
  365. padding: .6rem;
  366. }
  367. .image-search {
  368. border: none;
  369. outline: none;
  370. background-color: #EE7800;
  371. border-radius: 3px;
  372. color: white;
  373. font-size: 1rem;
  374. }
  375. .article-btn {
  376. border: none;
  377. outline: none;
  378. background-color: #EE7800;
  379. border-radius: 3px;
  380. color: white;
  381. font-size: 1rem;
  382. padding: .6rem;
  383. }
  384. .home-btn {
  385. border: none;
  386. outline: none;
  387. background-color: #EE7800;
  388. border-radius: 3px;
  389. color: white;
  390. font-size: 1rem;
  391. padding: .6rem;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  398. opacity: 1;
  399. }
  400. .navbar-main.sticky {
  401. position: fixed;
  402. top: 0;
  403. width: 100%;
  404. }
  405. .navbar-main.sticky + .sec-02 {
  406. padding-top: 53.5px;
  407. }
  408. .sec-02 {
  409. &__slider {
  410. width: 100%;
  411. height: 100%;
  412. .slide-item {
  413. width: 100%;
  414. height: 74vh;
  415. background-position: center center;
  416. background-size: cover;
  417. background-repeat: no-repeat;
  418. cursor: pointer;
  419. }
  420. }
  421. .slick-prev:before, .slick-next:before {
  422. display: none;
  423. }
  424. .slick-prev {
  425. left: 15px;
  426. z-index: 3;
  427. }
  428. .slick-next {
  429. right: 15px;
  430. }
  431. }
  432. .sec-04 {
  433. background-color: #F4F4F4;
  434. padding: 4rem 1rem;
  435. .container {
  436. max-width: 950px;
  437. width: 70%;
  438. @media (max-width: 1100px) {
  439. width: 90%;
  440. }
  441. }
  442. .card {
  443. box-shadow: 1px 2px 8px 1px rgb(214, 214, 214);
  444. text-decoration: none;
  445. cursor: pointer;
  446. transition: all .6s;
  447. &-title {
  448. font-size: 1.4rem;
  449. line-height: 1.8rem;
  450. color: #4C4C4C;
  451. font-weight: 500;
  452. transition: all 2s;
  453. }
  454. &__imgfr {
  455. width: 100%;
  456. img {
  457. width: 100%;
  458. height: 100%;
  459. }
  460. }
  461. &:hover {
  462. transform: scale(1.05);
  463. }
  464. }
  465. }
  466. .sec-guessLike {
  467. .container {
  468. margin:0 auto;
  469. padding: 2rem 2rem;
  470. max-width: 1050px;
  471. width: 70%;
  472. @media (max-width: 1100px) {
  473. width: 90%;
  474. padding: 0 1rem;
  475. }
  476. }
  477. &__titlebox {
  478. &-h2 {
  479. margin: 0 auto;
  480. font-size: 1.8rem;
  481. font-weight: 600;
  482. color: rgb(83, 83, 83);
  483. padding: .8rem 0;
  484. border-bottom: 6px solid #EE7800;
  485. display: inline-block;
  486. }
  487. }
  488. &__title {
  489. display: block;
  490. text-align: center;
  491. position: relative;
  492. font-size: 1.2rem;
  493. margin-bottom: .8rem;
  494. &::before, &::after {
  495. position: absolute;
  496. content: " ";
  497. width: 40%;
  498. height: 0rem;
  499. border-top: 1px solid black;
  500. top: 50%;
  501. }
  502. &::before {
  503. left: 0;
  504. }
  505. &::after {
  506. left: 60%;
  507. }
  508. }
  509. &__article {
  510. h5 {
  511. font-size: 1.1rem;
  512. }
  513. p {
  514. font-size: 14px;
  515. }
  516. }
  517. &__case {
  518. p {
  519. font-size: 1.1rem;
  520. font-weight: 500;
  521. }
  522. }
  523. &__card {
  524. width: 100%;
  525. overflow: hidden;
  526. height: 26vh;
  527. position: relative;
  528. background-position: center center;
  529. background-size: cover;
  530. background-repeat: no-repeat;
  531. &.special {
  532. height: 45vh;
  533. }
  534. &__img {
  535. width: 100%;
  536. transition: all .8s;
  537. }
  538. &__txt {
  539. position: absolute;
  540. bottom: 1rem;
  541. left: 3rem;
  542. color: white;
  543. z-index: 2;
  544. font-size: 600;
  545. text-shadow: 1px 1px 2px gray;
  546. }
  547. }
  548. &__video__play {
  549. position: absolute;
  550. width: 2.5rem;
  551. left: 50%;
  552. top: 50%;
  553. transform: translate(-50%, -50%);
  554. }
  555. }
  556. .sec-05 {
  557. border-top: 1px solid rgb(187, 187, 187);
  558. padding-bottom: 2rem;
  559. .container {
  560. margin:0 auto;
  561. padding: 0 2rem;
  562. max-width: 1050px;
  563. width: 70%;
  564. @media (max-width: 1100px) {
  565. width: 90%;
  566. padding: 0 1rem;
  567. }
  568. }
  569. &__tabdiv {
  570. box-sizing: content-box;
  571. align-items: center;
  572. justify-content: space-between;
  573. .more {
  574. padding-bottom: .4rem;
  575. }
  576. .nav {
  577. &-item {
  578. position: relative;
  579. padding-right: 18px;
  580. padding-left: 18px;
  581. &::after {
  582. position: absolute;
  583. content: " ";
  584. width: 100%;
  585. height: 30%;
  586. left: 0;
  587. top: 35%;
  588. background-color: transparent;
  589. border-right: 1px solid rgb(179, 179, 179);
  590. z-index: -1;
  591. }
  592. &:nth-of-type(3)::after {
  593. display: none;
  594. }
  595. }
  596. &-item-link {
  597. color: black;
  598. font-weight: 500;
  599. font-size: 1.6rem;
  600. border: none;
  601. position: relative;
  602. padding: 1.5rem 0;
  603. outline: none;
  604. @media screen and(max-width: 385px) {
  605. font-size: 1.1rem;
  606. }
  607. &:focus {
  608. outline: none !important;
  609. }
  610. &.active {
  611. color: #EE7800;
  612. }
  613. &::before {
  614. position: absolute;
  615. content: " ";
  616. width: 101%;
  617. height: 100%;
  618. left: -2px;
  619. top: 0px;
  620. background-color: transparent;
  621. border-top: 3px solid #EE7800;
  622. opacity: 0;
  623. }
  624. }
  625. }
  626. .nav-item-link.active::before {
  627. opacity: 1;
  628. }
  629. }
  630. .tab-pane {
  631. height: 100%;
  632. }
  633. &tab-content {
  634. height: 35vh;
  635. }
  636. .tabpar {
  637. &__card {
  638. margin: 3px;
  639. position: relative;
  640. font-size: 14px;
  641. cursor: pointer;
  642. &__imgfr {
  643. width: 100%;
  644. height: 25vh;
  645. position: relative;
  646. background-position: center center;
  647. background-size: cover;
  648. background-repeat: no-repeat;
  649. @media (max-width: 1100px) {
  650. height: 20vh;
  651. }
  652. }
  653. h5 {
  654. font-size: 1rem;
  655. }
  656. p {
  657. font-size: .95rem;
  658. font-weight: 300;
  659. color: gray;
  660. }
  661. &__play {
  662. position: absolute;
  663. left: 50%;
  664. top: 50%;
  665. transform: translate(-50%, -50%);
  666. width: 2.5rem;
  667. }
  668. }
  669. }
  670. .slick-prev {
  671. top: 40%;
  672. left: -2rem;
  673. z-index: 2;
  674. }
  675. .slick-next {
  676. top: 40%;
  677. right: -2rem;
  678. z-index: 2;
  679. }
  680. .slick-prev:before, .slick-next:before {
  681. display: none;
  682. }
  683. }
  684. .sec-06 {
  685. padding: 2rem 0;
  686. .container {
  687. margin:0 auto;
  688. padding: 1rem 2rem;
  689. max-width: 1050px;
  690. width: 70%;
  691. @media (max-width: 1100px) {
  692. width: 90%;
  693. padding: 0 1rem;
  694. }
  695. }
  696. &__title {
  697. h3 {
  698. display: inline-block;
  699. font-size: 1.6rem;
  700. padding-bottom: .5rem;
  701. border-bottom: 6px solid #EE7800;
  702. color: #535353;
  703. margin-bottom: 0;
  704. }
  705. }
  706. &__video {
  707. width: 100%;;
  708. position: relative;
  709. &__imgfr {
  710. width: 100%;
  711. height: 34vh;
  712. background-position: center center;
  713. background-size: cover;
  714. background-repeat: no-repeat;
  715. @media (max-width: 1100px) {
  716. height: 25vh;
  717. }
  718. }
  719. &__play {
  720. position: absolute;
  721. left: 50%;
  722. top: 50%;
  723. width: 2.5rem;
  724. height: 2.5rem;
  725. z-index: 2;
  726. transform: translate(-50%, -50%);
  727. }
  728. }
  729. &__videotxt {
  730. width: 90%;
  731. margin: 0 auto;
  732. background-color: rgba(255, 255, 255, 0.842);
  733. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  734. padding: .4rem .8rem;
  735. transform: translateY(-20%);
  736. font-weight: 600;
  737. font-size: 1.1rem;
  738. }
  739. &__btns {
  740. display: block;
  741. outline: none;
  742. border: none;
  743. padding: .4rem 1.2rem;
  744. width: 88%;
  745. margin: 0 auto;
  746. background-color: #ea068c;
  747. color: white;
  748. border-radius: 3px;
  749. box-shadow: 1px 1px 3px 1px rgba(196, 196, 196, 0.795);
  750. transition: all .4s;
  751. text-decoration: none;
  752. &:hover {
  753. transform: translate(2px , 2px);
  754. color: white;
  755. }
  756. &__txt {
  757. font-weight: 600;
  758. }
  759. &:nth-of-type(2), &:nth-of-type(3) {
  760. padding: 1rem 1.2rem;
  761. // #10506d;
  762. }
  763. }
  764. &__card {
  765. width: 100%;
  766. &:hover .sec-06__card__imgfr {
  767. transform: scale(1.1);
  768. }
  769. h5 {
  770. font-size: 1.1rem;
  771. margin-bottom: .3rem;
  772. }
  773. p {
  774. font-size: .9rem;
  775. }
  776. &__outer {
  777. width: 100%;
  778. height: 48vh;
  779. overflow: hidden;
  780. }
  781. &__play {
  782. position: absolute;
  783. left: 50%;
  784. top: 50%;
  785. transform: translate(-50%, -50%);
  786. width: 2.5rem;
  787. }
  788. &__imgfr {
  789. width: 100%;
  790. height: 48vh;
  791. background-position: center center;
  792. background-size: cover;
  793. background-repeat: no-repeat;
  794. transition: all .5s;
  795. position: relative;
  796. }
  797. }
  798. .slick-prev {
  799. top: 40%;
  800. left: .5rem;
  801. z-index: 2;
  802. }
  803. .slick-next {
  804. top: 40%;
  805. right: .5rem;
  806. z-index: 2;
  807. }
  808. .slick-prev:before, .slick-next:before {
  809. display: none;
  810. }
  811. }
  812. .sec-07 {
  813. padding: 2rem 0;
  814. .container {
  815. margin:0 auto;
  816. padding: .8rem 1.2rem;
  817. max-width: 1050px;
  818. width: 70%;
  819. background-color: #F4F4F4;
  820. @media (max-width: 1100px) {
  821. width: 90%;
  822. padding: 0 1rem;
  823. }
  824. }
  825. &__slider {
  826. height: 100%;
  827. .slide-item {
  828. height: 23vh;
  829. background-position: center center;
  830. background-size: contain;
  831. background-repeat: no-repeat;
  832. width: 100%;
  833. margin: 0 5px;
  834. cursor: pointer;
  835. @media (max-width: 1100px) {
  836. height: 18vh;
  837. }
  838. }
  839. }
  840. }
  841. .sec-08 {
  842. padding-bottom: 2.5rem;
  843. .container {
  844. margin:0 auto;
  845. padding: 1rem 0rem;
  846. max-width: 1050px;
  847. width: 70%;
  848. @media (max-width: 1100px) {
  849. width: 90%;
  850. padding: 0 1rem;
  851. }
  852. }
  853. &__title {
  854. border-bottom: 6px solid #EE7800;
  855. color: #535353;
  856. h3 {
  857. font-size: 1.6rem;
  858. }
  859. }
  860. &__slider {
  861. width: 100%;
  862. cursor: pointer;
  863. }
  864. &__imgfr {
  865. width: 100%;
  866. height: 28vh;
  867. background-position: center center;
  868. background-size: cover;
  869. background-repeat: no-repeat;
  870. position: relative;
  871. @media (max-width: 1100px) {
  872. height: 20vh;
  873. }
  874. }
  875. &__card {
  876. h5 {
  877. font-size: 1rem;
  878. }
  879. p {
  880. font-size: .9rem;
  881. }
  882. }
  883. &__card__play {
  884. position: absolute;
  885. left: 50%;
  886. top: 50%;
  887. transform: translate(-50%, -50%);
  888. width: 2.5rem;
  889. }
  890. &__cardtxt {
  891. font-size: 14px;
  892. padding-right: .6rem;
  893. }
  894. .slick-prev {
  895. top: 40%;
  896. left: -2rem;
  897. z-index: 2;
  898. }
  899. .slick-next {
  900. top: 40%;
  901. right: -2rem;
  902. z-index: 2;
  903. }
  904. .slick-prev:before, .slick-next:before {
  905. display: none;
  906. }
  907. }
  908. .sec-09 {
  909. background-color: #F4F4F4;
  910. .container {
  911. margin:0 auto;
  912. padding: 2rem 0rem;
  913. max-width: 1050px;
  914. width: 70%;
  915. @media (max-width: 1100px) {
  916. width: 90%;
  917. padding: 0 1rem;
  918. }
  919. }
  920. &__imgfr {
  921. width: 100%;
  922. height: 25vh;
  923. background-position: center center;
  924. background-size: cover;
  925. background-repeat: no-repeat;
  926. position: relative;
  927. @media (max-width: 1100px) {
  928. height: 20vh;
  929. }
  930. }
  931. &__card {
  932. margin: 5px;
  933. text-align: center;
  934. cursor: pointer;
  935. p {
  936. font-size: 14px;
  937. margin-top: .5rem;
  938. }
  939. &__play {
  940. position: absolute;
  941. right: .6rem;
  942. bottom: .6rem;
  943. width: 2.5rem;
  944. }
  945. }
  946. &__title {
  947. border-bottom: 6px solid #EE7800;
  948. color: #535353;
  949. h3 {
  950. font-size: 1.6rem;
  951. }
  952. }
  953. .slick-prev {
  954. top: 40%;
  955. left: -2rem;
  956. z-index: 2;
  957. }
  958. .slick-next {
  959. top: 40%;
  960. right: -2rem;
  961. z-index: 2;
  962. }
  963. .slick-prev:before, .slick-next:before {
  964. display: none;
  965. }
  966. }
  967. .sec-10 {
  968. padding: 2.5rem 0;
  969. .container {
  970. max-width: 1000px;
  971. width: 70%;
  972. @media (max-width: 1100px) {
  973. width: 90%;
  974. padding: 0 1rem;
  975. }
  976. }
  977. &__titlebox {
  978. border-bottom: 1px solid rgb(75, 75, 75);
  979. display: flex;
  980. justify-content: center;
  981. &-h2 {
  982. margin: 0 auto;
  983. font-size: 1.8rem;
  984. font-weight: 600;
  985. color: rgb(83, 83, 83);
  986. padding: .8rem 0;
  987. border-bottom: 6px solid #EE7800;
  988. display: inline-block;
  989. }
  990. }
  991. &__card {
  992. cursor: pointer;
  993. h5 {
  994. font-size: 1rem;
  995. margin-bottom: .3rem;
  996. }
  997. p {
  998. font-size: .95rem;
  999. font-weight: 300;
  1000. color: gray;
  1001. }
  1002. &-img {
  1003. width: 100%;
  1004. height: 25vh;
  1005. background-position: center center;
  1006. background-size: cover;
  1007. background-repeat: no-repeat;
  1008. position: relative;
  1009. @media (max-width: 1100px) {
  1010. height: 20vh;
  1011. }
  1012. }
  1013. &__play {
  1014. position: absolute;
  1015. right: 1rem;
  1016. bottom: 1rem;
  1017. width: 2.5rem;
  1018. height: 2.5rem;
  1019. }
  1020. }
  1021. }
  1022. .sec-11 {
  1023. padding: 2.5rem 0;
  1024. padding-top: 1rem;
  1025. .container {
  1026. max-width: 1000px;
  1027. width: 70%;
  1028. @media (max-width: 1100px) {
  1029. width: 90%;
  1030. padding: 0 1rem;
  1031. }
  1032. }
  1033. &__titlebox {
  1034. border-bottom: 1px solid rgb(75, 75, 75);
  1035. display: flex;
  1036. justify-content: center;
  1037. &-h2 {
  1038. margin: 0 auto;
  1039. font-size: 1.8rem;
  1040. font-weight: 600;
  1041. color: rgb(83, 83, 83);
  1042. padding: .8rem 0;
  1043. border-bottom: 6px solid #EE7800;
  1044. display: inline-block;
  1045. }
  1046. }
  1047. &__card {
  1048. cursor: pointer;
  1049. h5 {
  1050. font-size: 1rem;
  1051. margin-bottom: .3rem;
  1052. }
  1053. p {
  1054. font-size: .95rem;
  1055. font-weight: 300;
  1056. color: gray;
  1057. }
  1058. &-img {
  1059. width: 100%;
  1060. height: 25vh;
  1061. background-position: center center;
  1062. background-size: cover;
  1063. background-repeat: no-repeat;
  1064. position: relative;
  1065. @media (max-width: 1100px) {
  1066. height: 20vh;
  1067. }
  1068. }
  1069. &__play {
  1070. position: absolute;
  1071. right: 1rem;
  1072. bottom: 1rem;
  1073. width: 2.5rem;
  1074. height: 2.5rem;
  1075. }
  1076. }
  1077. }
  1078. .footer {
  1079. background: #e9e9e9;
  1080. padding: 2.5rem 0;
  1081. .container {
  1082. @media (max-width: 1100px) {
  1083. width: 98%;
  1084. max-width: 950px;
  1085. }
  1086. }
  1087. &__block {
  1088. padding: 1rem 3rem;
  1089. border-left: 1px solid rgb(143, 143, 143);
  1090. @media (max-width: 1100px) {
  1091. padding: 1rem 1rem;
  1092. }
  1093. &-title {
  1094. font-size: 1.3rem;
  1095. margin-bottom: 1.5rem;
  1096. }
  1097. &-list {
  1098. padding-left: 0;
  1099. }
  1100. &:nth-of-type(1) {
  1101. border-left: none;
  1102. }
  1103. &:nth-of-type(2) {
  1104. padding: 1rem 4rem;
  1105. @media (max-width: 1100px) {
  1106. padding: 1rem 1rem;
  1107. }
  1108. }
  1109. &-socials {
  1110. padding-left: 0;
  1111. display: flex;
  1112. align-items: center;
  1113. justify-content: space-between;
  1114. img {
  1115. @media (max-width: 1100px) {
  1116. width: 30px;
  1117. }
  1118. }
  1119. }
  1120. .follows-fp {
  1121. text-decoration: none;
  1122. color: #696969;
  1123. font-size: .9rem;
  1124. display: flex;
  1125. align-items: center;
  1126. @media (max-width: 1100px) {
  1127. font-size: .8rem;
  1128. }
  1129. }
  1130. &-phone {
  1131. p {
  1132. display: inline;
  1133. @media (max-width: 900px) {
  1134. display: block;
  1135. }
  1136. }
  1137. p, span {
  1138. font-size: .9rem;
  1139. }
  1140. .text-phone {
  1141. color: #EE7800;
  1142. text-decoration: none;
  1143. }
  1144. }
  1145. &-links {
  1146. display: flex;
  1147. align-items: center;
  1148. margin-top: 1rem;
  1149. justify-content: center;
  1150. &-grp {
  1151. padding: .3rem;
  1152. border-left: 1px solid rgb(185, 185, 185);
  1153. &:nth-of-type(1) {
  1154. border-left: none;
  1155. }
  1156. a {
  1157. display: block;
  1158. text-decoration: none;
  1159. color: #696969;
  1160. font-size: .9rem;
  1161. margin-bottom: .4rem;
  1162. @media (max-width: 1100px) {
  1163. font-size: .8rem;
  1164. }
  1165. }
  1166. }
  1167. }
  1168. &-subscribe {
  1169. width: 100%;
  1170. margin-top: 1rem;
  1171. .subscribeBar {
  1172. font-size: .8rem;
  1173. width: 70%;
  1174. margin-left: 7%;
  1175. @media (max-width: 900px) {
  1176. width: 75%;
  1177. margin-left: 3%;
  1178. font-size: .7rem;
  1179. }
  1180. }
  1181. .subscribeBtn {
  1182. width: 20%;
  1183. padding: .4rem .6rem;
  1184. padding-bottom: 9px;
  1185. border: none;
  1186. outline: none;
  1187. background-color: rgb(41, 41, 41);
  1188. color: white;
  1189. border-radius: 0 3px 3px 0;
  1190. margin-left: -.4rem;
  1191. @media (max-width: 900px) {
  1192. margin-left: -.3rem;
  1193. font-size: .8rem;
  1194. padding-top: 9px;
  1195. padding-bottom: 10px;
  1196. }
  1197. }
  1198. }
  1199. }
  1200. &__list-item {
  1201. display: flex;
  1202. align-items: center;
  1203. text-decoration: none;
  1204. margin-bottom: .5rem;
  1205. p {
  1206. color: #696969;
  1207. font-size: .9rem;
  1208. font-weight: 300;
  1209. }
  1210. }
  1211. &__list-icon {
  1212. width: 30px;
  1213. display: flex;
  1214. justify-content: center;
  1215. margin-right: .3rem;
  1216. }
  1217. .bottom-box {
  1218. padding: 1rem 0;
  1219. border-top: 1px solid rgb(185, 185, 185);
  1220. margin-top: 2.5rem;
  1221. }
  1222. }
  1223. #videoModal .modal-content {
  1224. background-color: transparent;
  1225. border: none;
  1226. width: fit-content;
  1227. }
  1228. #videoModal .modal-dialog {
  1229. max-width: 700px;
  1230. }
  1231. .more {
  1232. &link {
  1233. text-decoration: none;
  1234. color: #EE7800;
  1235. font-weight: 700;
  1236. &:hover {
  1237. color: #EE7800;
  1238. }
  1239. }
  1240. }
  1241. .fixed-btn {
  1242. position: fixed;
  1243. right: 15px;
  1244. bottom: 2rem;
  1245. .btn-gotop, .btn-login, .btn-favor {
  1246. cursor: pointer;
  1247. padding: 1.2rem .8rem;
  1248. background-color: rgba(255, 255, 255, 0.897);
  1249. display: flex;
  1250. align-items: center;
  1251. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  1252. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  1253. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
  1254. }
  1255. }
  1256. .sec-login {
  1257. &-list {
  1258. background-color: #F3F3F3;
  1259. padding: 1rem;
  1260. padding-bottom: 1.4rem;
  1261. hr {
  1262. background-color: #aaaaaa;
  1263. }
  1264. }
  1265. &-btns {
  1266. padding: 1rem;
  1267. background-color: white;
  1268. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1269. }
  1270. }
  1271. #loginModal {
  1272. .btn-close {
  1273. position: absolute;
  1274. right: -2rem;
  1275. top: -2rem;
  1276. }
  1277. }
  1278. #favorModal {
  1279. .btn-close {
  1280. position: absolute;
  1281. right: -2rem;
  1282. top: -2rem;
  1283. }
  1284. .sec-favor {
  1285. &-title {
  1286. color: #4C4C4C;
  1287. font-size: 18px;
  1288. }
  1289. &-list {
  1290. background-color: #F3F3F3;
  1291. padding: 1rem;
  1292. padding-bottom: 1.4rem;
  1293. hr {
  1294. background-color: #aaaaaa;
  1295. }
  1296. }
  1297. &-form, &-checklist {
  1298. .form-user {
  1299. width: 50%;
  1300. color: #707070;
  1301. font-size: 16px;
  1302. }
  1303. .form-progressbar {
  1304. width: 50%;
  1305. display: flex;
  1306. justify-content: space-between;
  1307. li {
  1308. width: 1.6rem;
  1309. height: 1.6rem;
  1310. border-radius: 50%;
  1311. border: 2px solid #D3D3D3;
  1312. line-height: 1.4rem;
  1313. display: flex;
  1314. justify-content: center;
  1315. position: relative;
  1316. color: #D3D3D3;
  1317. background-color: #F3F3F3;
  1318. z-index: 2;
  1319. &.active {
  1320. border: 2px solid #EE7800;
  1321. color: #EE7800;
  1322. &::before {
  1323. border-top: 2px solid #EE7800;
  1324. }
  1325. }
  1326. &::before {
  1327. position: absolute;
  1328. content: " ";
  1329. width: 4rem;
  1330. height: 0;
  1331. border-top: 2px dashed #D3D3D3;
  1332. right: 100%;
  1333. top: 50%;
  1334. z-index: 1;
  1335. }
  1336. &:nth-of-type(1)::before {
  1337. display: none;
  1338. }
  1339. }
  1340. }
  1341. .form-step {
  1342. background-color: white;
  1343. border-radius: 3px;
  1344. padding: 1.5rem 1rem;
  1345. padding-bottom: 1.5rem;
  1346. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1347. overflow: visible;
  1348. .next {
  1349. padding: .6rem 5rem;
  1350. background-color: #EE7800;
  1351. border-radius: 3px;
  1352. color: white;
  1353. border: none;
  1354. outline: none;
  1355. }
  1356. }
  1357. .form-step1 {
  1358. display: block;
  1359. }
  1360. .form-step2 {
  1361. display: none;
  1362. }
  1363. .form-step3 {
  1364. display: none;
  1365. position: relative;
  1366. padding-bottom: 1.5rem;
  1367. }
  1368. input[type="checkbox"], input[type="radio"] {
  1369. display: none;
  1370. }
  1371. .imgfr {
  1372. background-position: center center;
  1373. background-size: cover;
  1374. background-repeat: no-repeat;
  1375. width: 100%;
  1376. height: 4.5rem;
  1377. border-radius: 8px;
  1378. border: 2px solid transparent;
  1379. }
  1380. h4 {
  1381. color: #AAAAAA;
  1382. font-size: 15px;
  1383. font-weight: 400;
  1384. }
  1385. input[type="checkbox"]:checked + .fs-label-info .imgfr {
  1386. border: 2px solid #EE7800;
  1387. }
  1388. input[type="checkbox"]:checked + .fs-label-chbox {
  1389. border: 1px solid #EE7800;
  1390. color: #EE7800;
  1391. }
  1392. input[type="radio"]:checked + .fs-label-chbox {
  1393. border: 1px solid #EE7800;
  1394. color: #EE7800;
  1395. }
  1396. .step3-block {
  1397. margin-bottom: 1rem;
  1398. &:nth-of-type(3) {
  1399. margin-bottom: 0;
  1400. }
  1401. &-title {
  1402. color: #AAAAAA;
  1403. display: block;
  1404. margin-bottom: .5rem;
  1405. font-size: 1rem;
  1406. }
  1407. .radio {
  1408. display: inline-block;
  1409. padding: .25rem .7rem;
  1410. margin-right: .4rem;
  1411. border: 1px solid #707070;
  1412. border-radius: 2rem;
  1413. color: #797979;
  1414. margin-bottom: .5rem;
  1415. }
  1416. }
  1417. .skip {
  1418. padding: .3rem 1rem;
  1419. color: #AAAAAA;
  1420. border: none;
  1421. outline: none;
  1422. background-color: transparent;
  1423. }
  1424. .btngrp {
  1425. /* position: absolute;
  1426. left: 50%;
  1427. transform: translateX(-50%);
  1428. bottom: -6rem; */
  1429. display: flex;
  1430. flex-direction: column;
  1431. align-items: center;
  1432. .next {
  1433. transform: translateY(0rem);
  1434. }
  1435. }
  1436. }
  1437. &-checklist .form-user {
  1438. margin: 0 auto;
  1439. text-align: center;
  1440. margin-bottom: 1rem;
  1441. }
  1442. &-btns {
  1443. padding: 1rem;
  1444. background-color: white;
  1445. box-shadow: 0 0 15px 2px rgba(190, 190, 190, 0.61);
  1446. }
  1447. }
  1448. }
  1449. .test {
  1450. position: relative;
  1451. .cover {
  1452. width: 100%;
  1453. position: absolute;
  1454. left: 0;
  1455. bottom: 0;
  1456. display: block;
  1457. background-color: white;
  1458. height: 100%;
  1459. &.slidein {
  1460. //transform: translateX(0px);
  1461. -webkit-animation: slidein 2s forwards;
  1462. animation: slidein 2s forwards;
  1463. }
  1464. }
  1465. }
  1466. .title_back {
  1467. display: block;
  1468. position: relative;
  1469. width: 10em;
  1470. height: 1.75em;
  1471. overflow: hidden;
  1472. .title {
  1473. position: absolute;
  1474. left: 0;
  1475. bottom: -1.75em;
  1476. display: block;
  1477. transition: all 1s;
  1478. }
  1479. }
  1480. .test_content {
  1481. opacity: 0;
  1482. &.fadein {
  1483. //transform: translateX(0px);
  1484. -webkit-animation: fadein 2s forwards;
  1485. animation: fadein 2s forwards;
  1486. }
  1487. }
  1488. @-webkit-keyframes slidein {
  1489. 100% { height: 0px; }
  1490. }
  1491. @keyframes slidein {
  1492. 100% { height: 0px; }
  1493. }
  1494. @-webkit-keyframes fadein {
  1495. 100% { opacity: 1; }
  1496. }
  1497. @keyframes fadein {
  1498. 100% { opacity: 1; }
  1499. }
  1500. // 個案頁面
  1501. #hhh-cases{
  1502. .article__readMore::before {
  1503. content: '';
  1504. display: inline-block;
  1505. background: -webkit-gradient(linear, left bottom, left top, from(#FCFCFC), to(rgba(255, 255, 255, 0.454219)));
  1506. background: linear-gradient(0deg, #FCFCFC 0%, rgba(255, 255, 255, 0.454219) 100%);
  1507. width: 100%;
  1508. height: 25px;
  1509. -webkit-transition: all 300ms ease-in-out;
  1510. transition: all 300ms ease-in-out;
  1511. }
  1512. .article__contexts {
  1513. font-size: 1.1rem;
  1514. line-height: 1.8;
  1515. height: 50px;
  1516. overflow: hidden;
  1517. -webkit-transition: all 300ms ease-in-out;
  1518. transition: all 300ms ease-in-out;
  1519. color: #727679;
  1520. }
  1521. .article__readMore {
  1522. cursor: pointer;
  1523. margin-left: auto;
  1524. margin-right: auto;
  1525. color: #FFAC73;
  1526. text-align: center;
  1527. font-size: 90%;
  1528. padding: 0 0 1rem;
  1529. -webkit-transform: translateY(-20px);
  1530. transform: translateY(-20px);
  1531. -webkit-transition: all 300ms ease-in-out;
  1532. transition: all 300ms ease-in-out;
  1533. a{
  1534. text-decoration: none;
  1535. color: #FFAC73;
  1536. }
  1537. }
  1538. .img-wrapper-desktop {
  1539. background-color: #6D6D6D;
  1540. display: -webkit-box;
  1541. display: -ms-flexbox;
  1542. display: flex;
  1543. width: 100%;
  1544. height: 100%;
  1545. -webkit-box-pack: center;
  1546. -ms-flex-pack: center;
  1547. justify-content: center;
  1548. -webkit-box-align: center;
  1549. -ms-flex-align: center;
  1550. align-items: center;
  1551. margin: 0 auto;
  1552. }
  1553. .swiper-zoom-container-desktop {
  1554. width: 100%;
  1555. height: 100%;
  1556. display: flex;
  1557. -webkit-box-pack: center;
  1558. -ms-flex-pack: center;
  1559. justify-content: center;
  1560. -webkit-box-align: center;
  1561. -ms-flex-align: center;
  1562. align-items: center;
  1563. text-align: center;
  1564. }
  1565. .swiper-zoom-container-desktop img {
  1566. width: 100%;
  1567. height: 100%;
  1568. max-width: 100%;
  1569. max-height: 100%;
  1570. -o-object-fit: contain;
  1571. object-fit: contain;
  1572. }
  1573. .swiper-zoom-container-sm-desktop {
  1574. width: 50%;
  1575. height: 70%;
  1576. }
  1577. .swiper-zoom-container-sm-desktop {
  1578. width: 50%;
  1579. height: 70%;
  1580. }
  1581. .slick-prev:before,.slick-next:before {
  1582. display: none;
  1583. }
  1584. .modal-body{
  1585. padding: 0 !important;
  1586. }
  1587. .case-slick-box{
  1588. height: 100vh;
  1589. // width: 100%;
  1590. position: sticky;
  1591. top:15px;
  1592. }
  1593. .img-wrapper-desktopp{
  1594. width: 95%;
  1595. margin: 0 auto;
  1596. height: 100%;
  1597. }
  1598. .CaseDetail-slick{
  1599. height: 100vh;
  1600. width: 95%;
  1601. margin:0 auto ;
  1602. .slick-slide {
  1603. height: 100vh;
  1604. }
  1605. img{
  1606. width: 100%;
  1607. height: auto;
  1608. max-width: 100%;
  1609. max-height: 100%;
  1610. object-fit: contain;
  1611. }
  1612. }
  1613. .breadcrumb{
  1614. padding: 0.75rem 1rem;
  1615. a{
  1616. font-size: 0.75rem;
  1617. color:#727679;
  1618. text-decoration: none;
  1619. }
  1620. .active{
  1621. a{
  1622. color:#AAAAAA;
  1623. }
  1624. }
  1625. }
  1626. .h4{
  1627. font-weight: bold;
  1628. color: #34404B;
  1629. }
  1630. .article{
  1631. color:#727679;
  1632. .small{
  1633. padding: 0.5rem 0;
  1634. font-size: 80%;
  1635. }
  1636. }
  1637. .shadow-sm {
  1638. box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.08) !important;
  1639. }
  1640. .container-width-column{
  1641. max-width: 1120px;
  1642. margin: 0 auto;
  1643. }
  1644. .article__wrapper{
  1645. padding: 0.75rem 1rem;
  1646. }
  1647. .shadow{
  1648. box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  1649. }
  1650. .cases-content{
  1651. // height: 100vh;
  1652. background:#FCFCFC;
  1653. .caseSlider{
  1654. background: #fff;
  1655. max-width: 1310px;
  1656. margin: 0 auto;
  1657. padding: 100px;
  1658. position: relative;
  1659. @media screen and(max-width:576px) {
  1660. padding: 0;
  1661. }
  1662. }
  1663. .caseSlider .morePhotoTip {
  1664. cursor: pointer;
  1665. position: absolute;
  1666. color: #FFF;
  1667. right: 120px;
  1668. bottom: 120px;
  1669. padding: 0.2rem 0.8rem;
  1670. background-color: rgba(0, 0, 0, 0.45);
  1671. -webkit-transition: all 300ms ease-in-out;
  1672. transition: all 300ms ease-in-out;
  1673. }
  1674. }
  1675. .container--padding{
  1676. padding: 1.2rem 0;
  1677. }
  1678. .info__items{
  1679. font-size: 1.2rem;
  1680. text-align: center;
  1681. color:#34404B;
  1682. font-weight: 800;
  1683. min-height: 4.5rem;
  1684. display: flex;
  1685. justify-content: center;
  1686. align-items: center;
  1687. @media screen and(max-width:576px) {
  1688. font-size: 1rem;
  1689. }
  1690. }
  1691. .info__items__title{
  1692. color:#727679;
  1693. font-weight: 400;
  1694. font-size: 1rem;
  1695. }
  1696. .case-scMedia__block{
  1697. width: 35%;
  1698. margin: 0 auto;
  1699. .case-scMedia__list{
  1700. background-color: #FFF;
  1701. box-shadow: 0 1px 10px #cecece;
  1702. border-radius: 45px;
  1703. padding: 1rem 2.8rem;
  1704. display: flex;
  1705. justify-content: space-around;
  1706. }
  1707. }
  1708. .relTag {
  1709. padding: 1rem;
  1710. a{
  1711. margin: 0 0 0.6rem 0.6rem;
  1712. }
  1713. }
  1714. .relTag__items__title{
  1715. width: 7%;
  1716. }
  1717. .relTag__items{
  1718. width: 100%;
  1719. display: flex;
  1720. }
  1721. .relTag__items__tags{
  1722. width: 93%;
  1723. }
  1724. .btn-outline-custom{
  1725. border-color:#707070;
  1726. }
  1727. .caseData{
  1728. color: #727679;
  1729. padding: 0.5rem 0 0;
  1730. margin-bottom: 3rem;
  1731. h4{
  1732. font-weight: bold;
  1733. color: #34404B;
  1734. padding: 0.5rem;
  1735. }
  1736. .caseData__infoBlock{
  1737. position: relative;
  1738. box-shadow: 0 1px 10px #cecece;
  1739. padding: 1rem;
  1740. }
  1741. .caseData__infoItems{
  1742. padding: 0.5rem;
  1743. }
  1744. .caseData__infoItems__list{
  1745. display: flex;
  1746. }
  1747. .caseData__infoItems__list--lf{
  1748. justify-content: start;
  1749. -webkit-box-align: start;
  1750. display: flex;
  1751. flex-grow: 0;
  1752. max-width: 15%;
  1753. flex-basis: 15%;
  1754. -webkit-box-flex: 0;
  1755. }
  1756. .caseData__infoItems__list--rt{
  1757. flex-basis: 80%;
  1758. flex-grow: 0;
  1759. max-width: 80%;
  1760. justify-content: start;
  1761. word-break: break-all;
  1762. }
  1763. a{
  1764. text-decoration: none;
  1765. background-color: transparent;
  1766. color: #727679;
  1767. }
  1768. }
  1769. .caseData__designerBlock{
  1770. display: flex;
  1771. box-shadow: 0 1px 10px #cecece;
  1772. ul{
  1773. list-style-type: none;
  1774. padding: 0.6rem;
  1775. }
  1776. }
  1777. .caseData__designerBlock__designer--pc{
  1778. padding: 1rem 0.9rem;
  1779. width: 50%;
  1780. height: 370px;
  1781. }
  1782. .caseData__designerBlock__designer--above{
  1783. height: 70%;
  1784. }
  1785. .caseData__designerBlock__designer--below{
  1786. height: 25%;
  1787. border-top: 1px solid #727679;
  1788. }
  1789. .caseData__designerBlock__avatar--img{
  1790. height: 100%;
  1791. background-size: contain;
  1792. background-repeat: no-repeat;
  1793. background-position: center;
  1794. }
  1795. .caseData__designerBlock__avatar{
  1796. width: 50%;
  1797. }
  1798. .tel{
  1799. color: #EE751B !important;
  1800. font-size: 1.5rem;
  1801. font-weight: bold;
  1802. }
  1803. .likeSee__state{
  1804. display: flex;
  1805. -webkit-box-pack: justify;
  1806. justify-content: space-between;
  1807. -webkit-box-align: center;
  1808. align-items: center;
  1809. h4{
  1810. font-weight: bold;
  1811. color: #34404B;
  1812. }
  1813. .likeSee__state__filter--divider{
  1814. height: 12px;
  1815. display: inline-block;
  1816. border: 0.5px solid #9d9d9d;
  1817. }
  1818. a{
  1819. color:#727679;
  1820. text-decoration: none;
  1821. transition: 0.3s;
  1822. &:hover{
  1823. color: #EE7800;
  1824. }
  1825. }
  1826. .active{
  1827. color: #EE751B;
  1828. }
  1829. }
  1830. .card {
  1831. border: none;
  1832. font-size: 0.75rem;
  1833. }
  1834. .vue-waterfall{
  1835. position: relative;
  1836. a {
  1837. color: #727679;
  1838. text-decoration: none;
  1839. background-color: transparent;
  1840. font-size: 0.75rem;
  1841. }
  1842. .card-body {
  1843. padding: 0.5rem 0.5rem 0.5rem 0;
  1844. }
  1845. .likeSee__tag--item {
  1846. margin: 0 0.2rem 0 0;
  1847. text-decoration: none !important;
  1848. color: #727679 !important;
  1849. }
  1850. }
  1851. .likeSee__tag {
  1852. padding: 0.5rem 0;
  1853. }
  1854. .likeSee__tag--item {
  1855. margin: 0 0.2rem 0 0;
  1856. text-decoration: none !important;
  1857. color: #727679 !important;
  1858. }
  1859. .likeSee__state__filter--item{
  1860. cursor: pointer;
  1861. }
  1862. .formBtn .btn {
  1863. padding: 1.2rem 0.75rem;
  1864. }
  1865. .btn-primary {
  1866. color: #fff;
  1867. background-color: #EE7800;
  1868. border-color: #EE7800;
  1869. }
  1870. .btn-block {
  1871. display: block;
  1872. width: 100%;
  1873. }
  1874. .container-width-ad {
  1875. max-width: 768px;
  1876. }
  1877. .formBtn{
  1878. width: 47%;
  1879. }
  1880. .ad__bgImg {
  1881. height: 80px;
  1882. background-repeat: no-repeat;
  1883. background-size: cover;
  1884. background-position: center;
  1885. }
  1886. .container-width-ad {
  1887. max-width: 768px;
  1888. margin-bottom: 30px;
  1889. }
  1890. // 彈出視窗
  1891. .contact-section-avatar{
  1892. width: 75px;
  1893. height: 100px;
  1894. }
  1895. .contact-section-company{
  1896. font-weight: bold;
  1897. font-size: 18px;
  1898. color: #6D6D6D ;
  1899. text-decoration: none;
  1900. height: calc(18px * 2 *1.39);
  1901. }
  1902. .contact-section-detail-box{
  1903. color: #6D6D6D ;
  1904. display: flex !important;
  1905. .contact-section-detail-lf{
  1906. flex-basis: 7%;
  1907. flex-grow: 0;
  1908. max-width: 7%;
  1909. display: flex !important;
  1910. -webkit-box-align: start;
  1911. -webkit-box-flex: 0;
  1912. }
  1913. a{
  1914. color: #6D6D6D ;
  1915. text-decoration: none;
  1916. }
  1917. }
  1918. .info-area-title-desktop {
  1919. font-size: 18px;
  1920. font-weight: bold;
  1921. padding: 0.6rem 0 0.6rem 0.6rem;
  1922. margin: 1.6rem 0 1rem 0;
  1923. background-color: #EFEFEF;
  1924. a{
  1925. color: #6D6D6D;
  1926. text-decoration: none;
  1927. }
  1928. }
  1929. .info-area-data-desktop,.info-area-other-case-desktop,.info-area-same-case-desktop,.info-area-contact-desktop{
  1930. font-size: 16px;
  1931. font-weight: bold;
  1932. color: #6D6D6D;
  1933. a{
  1934. color: #6D6D6D;
  1935. text-decoration: none;
  1936. }
  1937. }
  1938. .divider {
  1939. width: 100%;
  1940. height: 1px;
  1941. border-left: none;
  1942. border-bottom: 1px solid #9c9c9c;
  1943. margin: 10px 0;
  1944. }
  1945. .data-table-desktop {
  1946. width: 100%;
  1947. font-size: 14px;
  1948. padding: 0.55rem 0;
  1949. }
  1950. .data-table-lf{
  1951. -ms-flex-preferred-size: 18%;
  1952. flex-basis: 18%;
  1953. -webkit-box-flex: 0;
  1954. flex-grow: 0;
  1955. max-width: 25%;
  1956. display: flex;
  1957. -webkit-box-pack: start;
  1958. justify-content: start;
  1959. -webkit-box-align: start;
  1960. align-items: start;
  1961. }
  1962. .contact-section-detail-desktop{
  1963. font-size: 14px;
  1964. }
  1965. .contact-section-detail-lf{
  1966. flex-basis: 7%;
  1967. -webkit-box-flex: 0;
  1968. flex-grow: 0;
  1969. display: -webkit-box;
  1970. display: flex;
  1971. -webkit-box-align: start;
  1972. align-items: start;
  1973. max-width: 7%;
  1974. }
  1975. .info {
  1976. margin: 0 0 1.8rem;
  1977. -webkit-transition: all 300ms ease-in-out;
  1978. transition: all 300ms ease-in-out;
  1979. .info__option {
  1980. display: -webkit-box;
  1981. display: -ms-flexbox;
  1982. display: flex;
  1983. -webkit-box-pack: center;
  1984. -ms-flex-pack: center;
  1985. justify-content: center;
  1986. -webkit-box-align: center;
  1987. -ms-flex-align: center;
  1988. align-items: center;
  1989. min-height: 100%;
  1990. }
  1991. .info__items--ellipse {
  1992. -webkit-box-orient: vertical;
  1993. box-orient: vertical;
  1994. -webkit-line-clamp: 1;
  1995. height: calc(19.2px * 1 * 1.5);
  1996. overflow: hidden;
  1997. text-overflow: ellipsis;
  1998. display: -webkit-box;
  1999. -webkit-transition: all 300ms ease-in-out;
  2000. transition: all 300ms ease-in-out;
  2001. @media screen and(max-width:576px) {
  2002. height: calc(16px * 1 * 1.5);
  2003. min-height: 0;
  2004. padding: 0;
  2005. }
  2006. }
  2007. .border-sidebar{
  2008. position: relative;
  2009. }
  2010. .border-sidebar::after {
  2011. content: '';
  2012. display: inline-block;
  2013. width: 1px;
  2014. height: calc(150px * 0.8);
  2015. background-color: #cecece;
  2016. -webkit-transform: translate3d(0, 0, 0);
  2017. transform: translate3d(0, 0, 0);
  2018. position: absolute;
  2019. left: 100%;
  2020. top: 12px;
  2021. }
  2022. .mh{
  2023. min-height: 75px;
  2024. }
  2025. .border-below {
  2026. border-bottom: 1px solid #cecece;
  2027. }
  2028. .container--padding{
  2029. @media screen and(max-width:576px) {
  2030. padding: 0 1.875rem;
  2031. }
  2032. }
  2033. }
  2034. .CaseInfo-pc{
  2035. @media screen and(max-width:576px) {
  2036. display: none;
  2037. }
  2038. }
  2039. .info--shadow {
  2040. -webkit-box-shadow: 0 1px 10px #cecece;
  2041. box-shadow: 0 1px 10px #cecece;
  2042. }
  2043. }
  2044. // 文章頁面
  2045. .article--style{
  2046. background: #fff;
  2047. box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  2048. }
  2049. .article__title{
  2050. color: #34404B;
  2051. font-size: 1.5rem;
  2052. font-weight: bold;
  2053. margin-bottom: 0.5rem;
  2054. }
  2055. .article__contexts{
  2056. font-size: 1.1rem;
  2057. line-height: 1.8;
  2058. img{
  2059. max-width: 80%;
  2060. margin: 0.5rem 0;
  2061. }
  2062. p{
  2063. margin-bottom: 1rem !important;
  2064. }
  2065. a{
  2066. text-decoration: none;
  2067. }
  2068. strong {
  2069. font-weight: bolder;
  2070. }
  2071. }
  2072. .cardList__items{
  2073. box-shadow: 0 1px 10px #eee;
  2074. margin: 0 0 1.5rem;
  2075. img{
  2076. width: 100%;
  2077. height: 293px;
  2078. }
  2079. .cardList__items__content {
  2080. padding: 0.5rem 1rem;
  2081. }
  2082. .cardList__items--title {
  2083. font-size: 1.125rem;
  2084. font-weight: bold;
  2085. margin: 0.5rem 0;
  2086. color: #727679;
  2087. }
  2088. .likeSee__tag--item{
  2089. margin: 0 0.2rem 0 0;
  2090. }
  2091. a{
  2092. font-size: 16px !important;
  2093. }
  2094. p{
  2095. margin-bottom: 1rem !important;
  2096. }
  2097. }