style.scss 51 KB

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