list-style.scss 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  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%, 0.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. z-index: 3;
  23. }
  24. &.bannerClose {
  25. height: 0;
  26. overflow: hidden;
  27. transition-property: height;
  28. transition-duration: 300ms;
  29. }
  30. .container-fluid {
  31. background-color: rgb(202, 202, 202);
  32. // height: 295px;
  33. // @media (max-width: 1850px) {
  34. // height: 260px;
  35. // }
  36. // @media (max-width: 1550px) {
  37. // height: 230px;
  38. // }
  39. // @media (max-width: 1100px) {
  40. // height: 200px;
  41. // }
  42. }
  43. &__slider {
  44. margin: 0 auto;
  45. width: 100%;
  46. height: 100%;
  47. max-width: 1310px;
  48. padding-top: 20px;
  49. padding-bottom: 24px;
  50. @media (max-width: 1850px) {
  51. max-width: 1310px;
  52. }
  53. @media (max-width: 1550px) {
  54. max-width: 1310px;
  55. }
  56. @media (max-width:576px) {
  57. max-width: 100%;
  58. height: auto;
  59. }
  60. .slide-item {
  61. width: 100%;
  62. height: 100%;
  63. max-width: 1310px;
  64. max-height: 300px;
  65. -o-object-fit: contain;
  66. object-fit: contain;
  67. height: 300px;
  68. cursor: pointer;
  69. @media (max-width:576px) {
  70. max-width: 100%;
  71. height: auto;
  72. }
  73. }
  74. }
  75. .slick-next {
  76. @media (max-width:576px) {
  77. right: 25px;
  78. }
  79. }
  80. .slick-prev {
  81. z-index: 100;
  82. @media (max-width:576px) {
  83. left: 25px;
  84. }
  85. }
  86. .slick-prev:before,
  87. .slick-next:before {
  88. display: none;
  89. }
  90. }
  91. /* 設計師列表頁_navbar start*/
  92. .v-toolbar {
  93. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  94. }
  95. .v-toolbar__content_nav_box {
  96. justify-content: center;
  97. height: 100%;
  98. }
  99. .layout {
  100. display: flex;
  101. flex: 1 1 auto;
  102. flex-wrap: nowrap;
  103. min-width: 0;
  104. }
  105. .v-toolbar__content {
  106. position: relative;
  107. align-items: center;
  108. display: flex;
  109. .logo {
  110. position: absolute;
  111. left: 10px;
  112. top: 8px;
  113. z-index: 200;
  114. }
  115. }
  116. .shadow-none {
  117. box-shadow: none;
  118. }
  119. .text-promote-color {
  120. color: #ee7800 !important;
  121. }
  122. .navbar-main {
  123. background: #fff;
  124. z-index: 1000;
  125. }
  126. .dropdown {
  127. position: relative;
  128. }
  129. #app_user {
  130. .dropdown-toggle {
  131. padding: 15px 0;
  132. }
  133. .dropdown:hover .dropdown-menu {
  134. display: block;
  135. }
  136. .dropdown-menu {
  137. position: absolute;
  138. top: 62px;
  139. left: 0;
  140. right: 0;
  141. text-align: center;
  142. &:hover {
  143. background-color: #eeeeee;
  144. }
  145. }
  146. }
  147. @media (min-width:991px) {
  148. li.dropdown:hover>.dropdown-menu {
  149. display: block;
  150. }
  151. }
  152. // li.dropdown:hover>.dropdown-menu {
  153. // display: block;
  154. // @media (max-width:991px) {
  155. // }
  156. // }
  157. // .dropdown-menu li:hover .sub-menu {
  158. // visibility: visible;
  159. // }
  160. // .dropdown:hover .dropdown-menu {
  161. // display: block;
  162. // }
  163. .nav-item {
  164. position: relative;
  165. .nav-link {
  166. position: relative;
  167. color: rgba(0, 0, 0, 0.87);
  168. font-size: 1.17rem;
  169. padding: 1.075rem 10px;
  170. @media (max-width: 991px) {
  171. padding: 0;
  172. }
  173. }
  174. .dropdown-menu {
  175. position: absolute;
  176. top: 100%;
  177. left: 0;
  178. z-index: 1050;
  179. float: left;
  180. min-width: 10rem;
  181. padding: 0.5rem 0;
  182. margin: 0.125rem 0 0;
  183. font-size: 1rem;
  184. color: #212529;
  185. text-align: left;
  186. list-style: none;
  187. background-color: #fff;
  188. background-clip: padding-box;
  189. border: 1px solid rgba(0, 0, 0, 0.15);
  190. border-radius: 0.25rem;
  191. transition: 0.3s;
  192. }
  193. }
  194. .nav-item .thdmenu-block {
  195. display: none;
  196. position: absolute;
  197. left: 99.5%;
  198. top: -1px;
  199. }
  200. .dropdown-menu {
  201. // position: relative;
  202. min-height: 42px;
  203. margin-left: 10px;
  204. }
  205. .dropdown-toggle::after {
  206. display: none !important;
  207. }
  208. .thdmenu-block {
  209. position: absolute;
  210. left: 99.5% !important;
  211. top: -1px !important;
  212. }
  213. .dropdown-item {
  214. cursor: pointer;
  215. }
  216. .v-toolbar .navbar-nav>li:hover>.dropdown-menu {
  217. display: block;
  218. }
  219. .v-toolbar .dropdown-menu>li:hover>.thdmenu-block {
  220. // color:#0000;
  221. display: block;
  222. }
  223. .navbar .dropdown-menu.dropdown-level-width {
  224. min-width: 13.5rem;
  225. }
  226. .navbar .navbar-nav .dropdown-item:hover {
  227. background: transparent !important;
  228. }
  229. .dropdown-sub:hover .submenu,
  230. .dropdown-sub:hover>div .thdmenu-block>li:hover>.dropdown-item,
  231. .dropdown-sub:hover i {
  232. color: #ee7800;
  233. }
  234. .navbar .dropdown-menu {
  235. top: 98%;
  236. }
  237. .navbar-nav .dropdown-menu {
  238. // position: static;
  239. float: none;
  240. }
  241. .navbar-expand-lg .navbar-nav .dropdown-menu {
  242. position: absolute;
  243. top: 72px;
  244. @media (max-width: 1200px) {
  245. top: 69px;
  246. }
  247. @media (max-width: 991px) {
  248. top: 0;
  249. position: initial;
  250. }
  251. // &>li:hover>.thdmenu-block {
  252. // display: block;
  253. // }
  254. }
  255. .dropdown-menu li {
  256. position: relative;
  257. }
  258. .dropdown-menu .thdmenu-block {
  259. display: none;
  260. position: absolute;
  261. left: 100%;
  262. top: -7px;
  263. }
  264. @media (min-width:991px) {
  265. .dropdown-menu>li:hover>.thdmenu-block {
  266. display: block;
  267. }
  268. }
  269. // .dropdown-menu>li:hover>.thdmenu-block {
  270. // display: block;
  271. // }
  272. .thdmenu-block>li:hover>.dropdown-item {
  273. color: #ee7800;
  274. }
  275. .dropdown-sub {
  276. a {
  277. font-size: 16px;
  278. }
  279. p {
  280. font-size: 16px;
  281. }
  282. }
  283. .dropdown-sub {
  284. .dropdown-menu {
  285. // top: 45px !important;
  286. // left: 185px;
  287. top: -10px !important;
  288. left: 213px;
  289. &>li:hover>a {
  290. color: #ee7800;
  291. }
  292. }
  293. .submenu {
  294. color: #34404b;
  295. }
  296. @media (min-width: 991px) {
  297. &:hover .dropdown-menu {
  298. display: block;
  299. }
  300. }
  301. @media (max-width: 991px) {
  302. // .nav-link {
  303. // padding-left: 30px;
  304. // }
  305. .submenu {
  306. // padding-left: 50px;
  307. padding: 10px 20px;
  308. }
  309. }
  310. .dropdown-menu {
  311. padding-left: 10px;
  312. @media (max-width: 991px) {
  313. padding-left: 30px;
  314. }
  315. }
  316. }
  317. .dropdown {
  318. .list {
  319. @media (max-width: 991px) {
  320. .dropdown-sub {
  321. & {
  322. padding-left: 30px;
  323. }
  324. .nav-link {
  325. padding-left: 30px;
  326. }
  327. // padding-left: 30px;
  328. .submenu {
  329. padding: 8px 20px;
  330. }
  331. }
  332. .hover-block {
  333. padding: 0 !important;
  334. }
  335. }
  336. }
  337. }
  338. // .hover-block:hover .dropdown-menu {
  339. // display: block;
  340. // }
  341. // .hover-block > li:hover > a {
  342. // color: #ee7800;
  343. // }
  344. .hover-block {
  345. .nav-link {
  346. border-bottom: none !important;
  347. &:hover {
  348. a,
  349. p {
  350. color: var(--sub-color);
  351. }
  352. }
  353. }
  354. }
  355. .sticky-top {
  356. position: sticky;
  357. top: 0;
  358. z-index: 1020;
  359. }
  360. .toolbar .member-center {
  361. top: 5px;
  362. position: absolute;
  363. right: 8px;
  364. display: flex;
  365. align-items: center;
  366. z-index: 99;
  367. }
  368. .v-btn {
  369. height: 50px;
  370. transition: 0.3s;
  371. border-radius: 2px;
  372. }
  373. .v-btn__content {
  374. align-items: center;
  375. display: flex;
  376. flex: 1 0 auto;
  377. justify-content: center;
  378. margin: 0 auto;
  379. position: relative;
  380. transition: 0.3scubic-bezier (0.25, 0.8, 0.5, 1);
  381. white-space: nowrap;
  382. width: inherit;
  383. padding: 5px 8px;
  384. a {
  385. font-size: 14px;
  386. font-weight: normal;
  387. cursor: pointer;
  388. color: #000;
  389. font-family: Helvetica, Noto Sans TC, Roboto, Arial, sans-serif !important;
  390. }
  391. }
  392. .v-btn:hover {
  393. position: relative;
  394. }
  395. .v-btn:hover {
  396. background-color: #e5e6e5;
  397. }
  398. .navbar-login {
  399. padding-right: 8px !important;
  400. }
  401. .navbar-mb {
  402. 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);
  403. -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
  404. 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  405. -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);
  406. padding-top: 5px;
  407. padding-bottom: 5px;
  408. background-color: white !important;
  409. z-index: 99;
  410. &-toggler {
  411. padding-left: 0;
  412. border-color: transparent !important;
  413. &:focus {
  414. box-shadow: none;
  415. }
  416. }
  417. &-toggler-icon {
  418. display: flex;
  419. justify-items: center;
  420. i {
  421. font-size: 25px;
  422. line-height: 30px;
  423. display: inline-block;
  424. }
  425. }
  426. &-search {
  427. padding-right: 2px;
  428. }
  429. &-brand {
  430. font-size: 1.5rem;
  431. }
  432. }
  433. .navbar-main.sticky {
  434. position: fixed;
  435. top: 0;
  436. width: 100%;
  437. }
  438. .navbar-main.sticky+.sec-01 {
  439. padding-top: 58px;
  440. }
  441. .sticky {
  442. position: fixed;
  443. top: 0;
  444. width: 100%;
  445. z-index: 3000;
  446. }
  447. .sticky+.sec-01 {
  448. padding-top: 58px;
  449. }
  450. .sec-menu {
  451. display: none;
  452. z-index: 105;
  453. position: absolute;
  454. top: 0;
  455. left: 0;
  456. right: 0;
  457. font-size: 14px;
  458. &-block {
  459. padding-top: 61px;
  460. margin: 0;
  461. // display: none;
  462. // transform: translateX(-500px);
  463. transition: transform 0.5s;
  464. position: fixed;
  465. top: 0;
  466. left: -100%;
  467. right: 0;
  468. height: 100%;
  469. overflow-y: scroll;
  470. max-width: 100%;
  471. background-color: white;
  472. transition: all 0.3s;
  473. // &.slidein {
  474. // -webkit-animation: slidein 0.3s;
  475. // animation: slidein 0.3s;
  476. // }
  477. // &.slideout {
  478. // -webkit-animation: slideout 0.3s;
  479. // animation: slideout 0.3s;
  480. // }
  481. }
  482. &-list {
  483. background: white;
  484. margin-bottom: 0;
  485. .navbar-nav {
  486. padding: 0 2rem;
  487. width: 100%;
  488. .dropdown-menu {
  489. border: none;
  490. padding: 0;
  491. height: 0;
  492. opacity: 0;
  493. transition: all 1s;
  494. &.show {
  495. height: fit-content;
  496. opacity: 1;
  497. }
  498. .dropdown-item {
  499. padding-left: 3rem;
  500. &:active,
  501. &.active,
  502. &:focus {
  503. background-color: white;
  504. }
  505. &:hover {
  506. background-color: white;
  507. }
  508. }
  509. .sub-menu {
  510. .dropdown-item {
  511. padding-left: 6rem;
  512. }
  513. }
  514. }
  515. }
  516. .nav-item {
  517. font-size: 17px;
  518. display: block;
  519. width: 100%;
  520. }
  521. .nav-link {
  522. padding-top: 11px;
  523. padding-bottom: 8px;
  524. color: #707070;
  525. position: relative;
  526. -webkit-appearance: none !important;
  527. appearance: none !important;
  528. border-radius: 0;
  529. .link_div {
  530. width: 25px;
  531. }
  532. a {
  533. color: #707070;
  534. text-decoration: none;
  535. }
  536. &.show {
  537. i {
  538. transform: rotate(-180deg);
  539. }
  540. }
  541. .expand {
  542. position: absolute;
  543. right: 10px;
  544. i {
  545. font-size: 11px;
  546. color: #d3d3d3;
  547. transition: all 0.5s;
  548. }
  549. }
  550. &.text-main {
  551. color: #ee7800;
  552. }
  553. }
  554. .sub-link {
  555. .expand {
  556. position: absolute;
  557. right: 20px;
  558. top: 8px;
  559. width: 1.5rem;
  560. text-align: center;
  561. }
  562. }
  563. .sub-menu {
  564. display: none;
  565. }
  566. .sub-menu.show {
  567. display: block;
  568. }
  569. hr {
  570. margin: 3px 0;
  571. background-color: rgb(187, 187, 187);
  572. }
  573. }
  574. &-follows {
  575. padding: 2rem 2.5rem;
  576. background-color: #e6e6e6ef;
  577. margin-top: -9px;
  578. &-title {
  579. color: #797979;
  580. font-size: 14px;
  581. }
  582. }
  583. &-links {
  584. margin-bottom: 2.5rem;
  585. a {
  586. color: #797979;
  587. text-decoration: none;
  588. display: inline-block;
  589. padding: 1px 0;
  590. border-bottom: 1px solid #acacac;
  591. margin: 0 0.6rem;
  592. flex-wrap: nowrap;
  593. @media (max-width: 385px) {
  594. margin: 0 0.4rem;
  595. }
  596. }
  597. }
  598. .follows-fp {
  599. color: #797979;
  600. text-decoration: none;
  601. font-weight: 400;
  602. display: block;
  603. padding-left: 0.5rem;
  604. &:nth-of-type(1) {
  605. margin-bottom: 0.6rem;
  606. }
  607. }
  608. .copyright {
  609. color: #797979;
  610. font-size: 13px;
  611. }
  612. }
  613. // @keyframes slidein {
  614. // 100% {
  615. // left: 0;
  616. // }
  617. // }
  618. // @keyframes slideout {
  619. // 100% {
  620. // left: -100%;
  621. // }
  622. // }
  623. .navbar-light .navbar-brand {
  624. cursor: pointer;
  625. }
  626. .designers-nav {
  627. li {
  628. .nav-link {
  629. font-size: 16px;
  630. &:hover {
  631. opacity: 0.8;
  632. }
  633. }
  634. }
  635. .text-phone {
  636. color: #ea068c;
  637. }
  638. .nav-item .nav-link:after {
  639. border: none !important;
  640. }
  641. }
  642. /* 設計師列表頁_navbar end */
  643. #navbarSupportedContent {
  644. img {
  645. width: 20px;
  646. }
  647. }
  648. .navbar {
  649. 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);
  650. -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
  651. 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  652. -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);
  653. padding-top: 5px;
  654. padding-bottom: 5px;
  655. background-color: white !important;
  656. z-index: 99;
  657. .container-fluid {
  658. padding: 0 2.5rem;
  659. @media (max-width: 1100px) {
  660. padding: 0 0.6rem;
  661. }
  662. }
  663. &-toggler {
  664. padding-left: 0;
  665. border-color: transparent !important;
  666. &:focus {
  667. box-shadow: none;
  668. }
  669. }
  670. &-toggler-icon {
  671. display: flex;
  672. justify-items: center;
  673. i {
  674. font-size: 25px;
  675. line-height: 30px;
  676. display: inline-block;
  677. }
  678. }
  679. &-search,
  680. &-login {
  681. padding-right: 2px;
  682. }
  683. &-login {
  684. cursor: pointer;
  685. }
  686. &-search {
  687. &-magnify {
  688. cursor: pointer;
  689. }
  690. }
  691. &-brand {
  692. font-size: 1.5rem;
  693. &.navbar-logo {
  694. display: flex;
  695. align-items: center;
  696. }
  697. .navbar-login {
  698. font-size: 1rem;
  699. color: #ee7800;
  700. text-decoration: none;
  701. }
  702. }
  703. .nav-link {
  704. cursor: pointer;
  705. @media (max-width: 1100px) {
  706. font-size: 0.9rem;
  707. }
  708. .expand {
  709. transition: all .3s;
  710. i {
  711. color: #D3D3D3;
  712. }
  713. }
  714. .rotate {
  715. transform: rotate(180deg);
  716. }
  717. }
  718. .navbar-nav {
  719. @media (max-width: 991px) {
  720. &>li {
  721. padding: 15px 0;
  722. }
  723. li {
  724. border-bottom: 1px solid #F4F4F4;
  725. }
  726. .dropdown-menu {
  727. border: none;
  728. margin: 15px 0 -15px;
  729. .dropdown-sub {
  730. &:first-child {
  731. border-top: 1px solid #F4F4F4;
  732. }
  733. &:last-child {
  734. border-bottom: none;
  735. }
  736. }
  737. }
  738. .dropdown-sub {
  739. .dropdown-menu {
  740. margin: 0;
  741. li {
  742. padding: 8px 50px;
  743. &:first-child {
  744. border-top: 1px solid #F4F4F4;
  745. }
  746. &:last-child {
  747. border-bottom: none;
  748. }
  749. }
  750. }
  751. }
  752. }
  753. .nav-item {
  754. margin: 0 0.5rem;
  755. @media (max-width: 1200px) {
  756. margin: 0 0.25rem;
  757. }
  758. .dropbox {
  759. visibility: hidden;
  760. opacity: 0;
  761. transition: all 0.4s;
  762. position: absolute;
  763. width: 100vw;
  764. top: 100%;
  765. left: 0;
  766. background-color: rgba(255, 255, 255, 0.932);
  767. padding-top: 1.5rem;
  768. padding-bottom: 3rem;
  769. ul {
  770. padding-left: 0;
  771. }
  772. &-item {
  773. margin-bottom: 0.5rem;
  774. &.first {
  775. font-size: 1.1rem;
  776. font-weight: 600;
  777. .dropbox-link {
  778. color: black;
  779. }
  780. }
  781. }
  782. &-link {
  783. text-decoration: none;
  784. color: rgb(146, 146, 146);
  785. font-size: 0.85rem;
  786. &:hover {
  787. color: #ee7800;
  788. }
  789. &.dropbox-btn {
  790. border: 1px solid rgb(146, 146, 146);
  791. padding: 0.5rem 2rem;
  792. border-radius: 5px;
  793. width: 85%;
  794. min-width: 7rem;
  795. max-width: 11rem;
  796. }
  797. }
  798. &-btn {
  799. display: flex;
  800. align-items: center;
  801. justify-content: center;
  802. }
  803. .container {
  804. max-width: 900px;
  805. width: 70%;
  806. &.stylebox {
  807. transform: translateX(-30%);
  808. }
  809. &.designerbox {
  810. transform: translateX(-5%);
  811. }
  812. &.newbox {
  813. transform: translateX(15%);
  814. }
  815. &.forumbox {
  816. transform: translateX(50%);
  817. }
  818. }
  819. }
  820. .nav-link {
  821. // padding-top: 20px;
  822. position: relative;
  823. font-size: 19px;
  824. cursor: pointer;
  825. color: #34404b;
  826. border-bottom: 4px solid transparent;
  827. @media (max-width: 1200px) {
  828. font-size: 17px;
  829. }
  830. @media (max-width: 991px) {
  831. border-bottom: none;
  832. }
  833. a {
  834. transition: all .2s;
  835. }
  836. &:hover {
  837. border-bottom: 4px solid #ee7800;
  838. @media (max-width: 991px) {
  839. color: #ee7800;
  840. border-bottom: none;
  841. a {
  842. color: #ee7800;
  843. }
  844. }
  845. }
  846. span {
  847. display: block;
  848. // padding-top: .25rem;
  849. }
  850. .search-btn {
  851. border: none;
  852. background: transparent;
  853. padding-top: 4px;
  854. @media (max-width: 1200px) {
  855. padding-top: 3px;
  856. }
  857. img {
  858. padding-bottom: 4px;
  859. @media (max-width: 1200px) {
  860. padding-bottom: 3px;
  861. }
  862. @media (max-width: 1100px) {
  863. padding-bottom: 2px;
  864. }
  865. }
  866. }
  867. }
  868. .search-btn {
  869. border: none;
  870. background: transparent;
  871. }
  872. // .nav-link:after {
  873. // position: absolute;
  874. // content: " ";
  875. // width: 100%;
  876. // height: 100%;
  877. // top: 0;
  878. // right: 0;
  879. // border-bottom: 4px solid #ee7800;
  880. // opacity: 0;
  881. // transform: opacity 1s;
  882. // }
  883. &:hover {
  884. // .nav-link:after {
  885. // opacity: 1;
  886. // }
  887. >.dropbox {
  888. visibility: visible;
  889. opacity: 1;
  890. }
  891. }
  892. }
  893. .nav-item.lg {
  894. .container {
  895. max-width: 1200px;
  896. width: 90%;
  897. }
  898. .dropbox-link {
  899. text-decoration: none;
  900. color: rgb(146, 146, 146);
  901. font-size: 0.7rem;
  902. &:hover {
  903. color: #ee7800;
  904. }
  905. }
  906. .dropbox-item {
  907. margin-bottom: 0.1rem;
  908. &.first {
  909. .dropbox-link {
  910. font-size: 0.85rem;
  911. }
  912. }
  913. }
  914. }
  915. }
  916. &-search {
  917. .container {
  918. max-width: 900px;
  919. width: 70%;
  920. @media (max-width: 1100px) {
  921. width: 90%;
  922. }
  923. }
  924. .dropbox {
  925. visibility: hidden;
  926. opacity: 0;
  927. transition: all 0.2s;
  928. position: absolute;
  929. width: 100vw;
  930. top: 100%;
  931. left: 0;
  932. background-color: rgba(255, 255, 255, 0.932);
  933. padding-top: 1.5rem;
  934. padding-bottom: 3rem;
  935. &.open {
  936. visibility: visible;
  937. opacity: 1;
  938. }
  939. &__searchtab {
  940. width: 100%;
  941. background-color: gray;
  942. border-radius: 3px;
  943. padding: 0.2rem 1rem;
  944. padding-bottom: 1rem;
  945. }
  946. &__hots {
  947. &__title {
  948. font-size: 1rem;
  949. color: rgb(107, 107, 107);
  950. }
  951. &__link {
  952. font-size: 0.9rem;
  953. color: rgb(146, 146, 146);
  954. text-decoration: none;
  955. cursor: pointer;
  956. margin: 0 0.2rem;
  957. }
  958. }
  959. &__searchBar {
  960. &__input {
  961. width: 100%;
  962. outline: none;
  963. border: 2px solid #ee7800;
  964. border-radius: 5rem;
  965. padding: 0.3rem 1.2rem;
  966. font-size: 0.9rem;
  967. }
  968. &__submit {
  969. outline: none;
  970. border: none;
  971. font-size: 0.9rem;
  972. background-color: transparent;
  973. color: #ee7800;
  974. margin-left: -1rem;
  975. transform: translateX(-100%);
  976. padding: 0 0.6rem;
  977. }
  978. }
  979. &__tab {
  980. .nav-item {
  981. margin: 0 0.6rem;
  982. }
  983. }
  984. .nav-item-link {
  985. border: none;
  986. outline: none;
  987. font-size: 1rem;
  988. color: white;
  989. padding: 3px;
  990. position: relative;
  991. &::after {
  992. position: absolute;
  993. content: "";
  994. top: 0;
  995. left: 0;
  996. width: 100%;
  997. height: 100%;
  998. border-bottom: 3px solid #ee7800;
  999. opacity: 0;
  1000. }
  1001. &.active::after {
  1002. opacity: 1;
  1003. }
  1004. }
  1005. }
  1006. .dropbox-tab-content {
  1007. .tabpar {
  1008. display: flex;
  1009. padding-top: 0.5rem;
  1010. .col {
  1011. margin: 0 0.6rem;
  1012. }
  1013. .select {
  1014. font-size: 1rem;
  1015. padding: 0.6rem;
  1016. border-radius: 3px;
  1017. color: rgb(116, 116, 116);
  1018. }
  1019. button {
  1020. border: none;
  1021. outline: none;
  1022. background-color: #ee7800;
  1023. border-radius: 3px;
  1024. color: white;
  1025. font-size: 1rem;
  1026. padding: 0.6rem;
  1027. }
  1028. .image-search {
  1029. border: none;
  1030. outline: none;
  1031. background-color: #ee7800;
  1032. border-radius: 3px;
  1033. color: white;
  1034. font-size: 1rem;
  1035. }
  1036. .article-btn {
  1037. border: none;
  1038. outline: none;
  1039. background-color: #ee7800;
  1040. border-radius: 3px;
  1041. color: white;
  1042. font-size: 1rem;
  1043. padding: 0.6rem;
  1044. }
  1045. .home-btn {
  1046. border: none;
  1047. outline: none;
  1048. background-color: #ee7800;
  1049. border-radius: 3px;
  1050. color: white;
  1051. font-size: 1rem;
  1052. padding: 0.6rem;
  1053. }
  1054. }
  1055. }
  1056. }
  1057. #search-btn {
  1058. font-size: 20px;
  1059. border: none;
  1060. background: transparent;
  1061. }
  1062. }
  1063. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  1064. opacity: 1;
  1065. }
  1066. .navbar-main.sticky {
  1067. position: fixed;
  1068. top: 0;
  1069. width: 100%;
  1070. }
  1071. .navbar-main.sticky+.sec-02 {
  1072. padding-top: 53.5px;
  1073. }
  1074. .shadow-item {
  1075. position: absolute;
  1076. display: none;
  1077. height: 3px;
  1078. top: 51px;
  1079. width: 100vw;
  1080. right: 0;
  1081. left: 0;
  1082. margin: auto;
  1083. box-shadow: 0px 2px 3px #00000029;
  1084. border-bottom: 1px solid #ccc;
  1085. @media (max-width: 991px) {
  1086. display: block;
  1087. }
  1088. }
  1089. .sec-02 {
  1090. &__slider {
  1091. width: 100%;
  1092. height: 100%;
  1093. .slide-item {
  1094. width: 100%;
  1095. height: 74vh;
  1096. background-position: center center;
  1097. background-size: cover;
  1098. background-repeat: no-repeat;
  1099. cursor: pointer;
  1100. }
  1101. }
  1102. .slick-prev:before,
  1103. .slick-next:before {
  1104. display: none;
  1105. }
  1106. .slick-prev {
  1107. left: 15px;
  1108. z-index: 3;
  1109. }
  1110. .slick-next {
  1111. right: 15px;
  1112. }
  1113. }
  1114. a {
  1115. text-decoration: none;
  1116. }
  1117. .text-hhh {
  1118. color: #ee7800;
  1119. }
  1120. .content {
  1121. background-color: #fcfcfc;
  1122. padding: 1rem 30px 0.5rem;
  1123. .infoCard {
  1124. color: #727679;
  1125. text-align: center;
  1126. padding: 1rem;
  1127. background-color: rgba(244, 244, 244, 0.8);
  1128. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  1129. transform: translateY(-150px);
  1130. &__seo {
  1131. font-size: 0.9rem;
  1132. text-align: center;
  1133. padding: 1rem;
  1134. display: block;
  1135. line-height: 1.2;
  1136. }
  1137. &__approve {
  1138. color: #ff0000;
  1139. }
  1140. &__avatar {
  1141. width: 200px;
  1142. height: 200px;
  1143. border: 3px solid #fff;
  1144. border-radius: 50%;
  1145. background-size: cover;
  1146. background-repeat: no-repeat;
  1147. }
  1148. &__detail {
  1149. aside {
  1150. line-height: 2;
  1151. font-size: 0.9rem;
  1152. }
  1153. &__l {
  1154. flex-basis: 30%;
  1155. display: flex;
  1156. justify-content: flex-end;
  1157. flex-grow: 0;
  1158. max-width: 30%;
  1159. &.title {
  1160. color: #aaaaaa;
  1161. font-size: 1.125rem;
  1162. font-weight: 400;
  1163. transform: translateX(-15px);
  1164. }
  1165. }
  1166. &__r {
  1167. flex-basis: 70%;
  1168. text-align: start;
  1169. flex-grow: 0;
  1170. max-width: 70%;
  1171. word-break: break-all;
  1172. a {
  1173. color: #727679;
  1174. &:hover {
  1175. color: #ee7800;
  1176. }
  1177. }
  1178. }
  1179. }
  1180. .scMedia {
  1181. display: flex;
  1182. padding: 1rem 0;
  1183. width: 100%;
  1184. margin-left: auto;
  1185. margin-right: auto;
  1186. justify-content: space-around;
  1187. a {
  1188. width: 16%;
  1189. img {
  1190. width: 100%;
  1191. }
  1192. }
  1193. span {
  1194. width: 16%;
  1195. cursor: pointer;
  1196. img {
  1197. width: 100%;
  1198. }
  1199. }
  1200. }
  1201. }
  1202. }
  1203. .infoContent {
  1204. a {
  1205. color: #727679;
  1206. text-decoration: none;
  1207. font-size: 0.9rem;
  1208. &.active {
  1209. color: #ee7800;
  1210. }
  1211. }
  1212. .nav-item {
  1213. margin: 0 0.8rem;
  1214. width: auto;
  1215. &-link {
  1216. display: block;
  1217. padding: 0.5rem 2.5rem;
  1218. text-decoration: none;
  1219. background-color: transparent;
  1220. font-size: 0.9rem;
  1221. color: #727679;
  1222. transition: all 0.3s;
  1223. -webkit-appearance: none !important;
  1224. @media (max-width: 1200px) {
  1225. padding: 0.5rem 0.8rem;
  1226. }
  1227. &:hover {
  1228. color: #ee7800;
  1229. }
  1230. &.active {
  1231. color: #ee7800;
  1232. border-bottom: 2px solid #ee7800;
  1233. }
  1234. }
  1235. }
  1236. .likeSee {
  1237. margin-top: 0.8rem;
  1238. @media (max-width: 1200px) {
  1239. width: 12%;
  1240. position: absolute;
  1241. right: -1.5rem;
  1242. bottom: -1.5rem;
  1243. }
  1244. span {
  1245. color: #727679;
  1246. font-size: 0.9rem;
  1247. cursor: pointer;
  1248. &:hover {
  1249. color: #ee7800;
  1250. }
  1251. }
  1252. &__divider {
  1253. height: 12px;
  1254. display: inline-block;
  1255. border: 0.5px solid #9d9d9d;
  1256. }
  1257. }
  1258. .card {
  1259. box-shadow: 0 1px 10px #eee;
  1260. margin: 0 0 1.5rem;
  1261. border: none;
  1262. overflow: hidden;
  1263. &:hover .card__bgImg {
  1264. transform: scale(1.1);
  1265. }
  1266. &__bgImg {
  1267. height: 293px;
  1268. background-repeat: no-repeat;
  1269. background-size: cover;
  1270. background-position: center;
  1271. position: relative;
  1272. display: flex;
  1273. justify-content: center;
  1274. -webkit-box-align: center;
  1275. align-items: center;
  1276. -webkit-box-pack: center;
  1277. transition: all 0.4s;
  1278. }
  1279. &-body {
  1280. padding: 0.5rem 1rem;
  1281. }
  1282. &__title {
  1283. font-size: 1.125rem;
  1284. -webkit-box-orient: vertical;
  1285. box-orient: vertical;
  1286. -webkit-line-clamp: 2;
  1287. height: calc(18px * 2 * 1.5);
  1288. overflow: hidden;
  1289. text-overflow: ellipsis;
  1290. display: -webkit-box;
  1291. font-weight: bold;
  1292. margin: 0.5rem 0;
  1293. color: #727679;
  1294. }
  1295. &__tag {
  1296. margin: 0 0.2rem 0 0;
  1297. &:hover {
  1298. color: #ee7800;
  1299. }
  1300. }
  1301. }
  1302. .company {
  1303. &__block {
  1304. margin: 0 0 2rem;
  1305. }
  1306. &__title {
  1307. color: #aaaaaa;
  1308. font-size: 2rem;
  1309. font-weight: bold;
  1310. }
  1311. &__text {
  1312. color: #43484c;
  1313. }
  1314. }
  1315. }
  1316. .nav-collapse-fixed {
  1317. position: fixed;
  1318. top: 52px;
  1319. z-index: -1;
  1320. width: 100%;
  1321. @media (max-width: 1200px) {
  1322. width: auto;
  1323. }
  1324. opacity: 0;
  1325. transition: opacity 0.5s;
  1326. &.sticky {
  1327. display: block;
  1328. opacity: 1;
  1329. z-index: 20;
  1330. }
  1331. .nav-collpase {
  1332. padding: 1rem 0;
  1333. background-color: #fcfcfc;
  1334. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  1335. }
  1336. }
  1337. .navbar-main.sticky+.hero {
  1338. padding-top: 53px;
  1339. }
  1340. .page-link {
  1341. color: #727679;
  1342. &:hover {
  1343. color: #fff;
  1344. background-color: #ee7800;
  1345. border-color: #ee7800;
  1346. }
  1347. }
  1348. .page-link:focus {
  1349. color: #fff;
  1350. background-color: #ee7800;
  1351. border-color: #ee7800;
  1352. box-shadow: none;
  1353. }
  1354. .page-active {
  1355. color: #fff;
  1356. background-color: #ee7800;
  1357. border-color: #ee7800;
  1358. }
  1359. .fixed-btn {
  1360. position: fixed;
  1361. right: 15px;
  1362. bottom: 2rem;
  1363. .btn-gotop,
  1364. .btn-login,
  1365. .btn-favor {
  1366. cursor: pointer;
  1367. padding: 1.2rem 0.8rem;
  1368. background-color: rgba(255, 255, 255, 0.897);
  1369. display: flex;
  1370. align-items: center;
  1371. box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1372. -webkit-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
  1373. 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1374. -moz-box-shadow: 1px 1px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
  1375. 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  1376. }
  1377. }
  1378. .footer__block-socials {
  1379. padding-left: 0;
  1380. display: flex;
  1381. align-items: center;
  1382. justify-content: space-between;
  1383. @media (max-width: 1100px) {
  1384. & img {
  1385. width: 30px;
  1386. }
  1387. }
  1388. @media (max-width: 575px) {
  1389. justify-content: center;
  1390. & li {
  1391. margin: 5px;
  1392. }
  1393. }
  1394. }
  1395. .like {
  1396. display: none;
  1397. }
  1398. // #pills-intro {
  1399. // .work__row {
  1400. // .col-md-4:nth-of-type(3n-1) {
  1401. // margin-top: .5rem;
  1402. // }
  1403. // .col-md-4:nth-of-type(3n) {
  1404. // margin-top: -1rem;
  1405. // }
  1406. // .col-md-4:nth-of-type(3n+1) {
  1407. // margin-top: -1rem;
  1408. // }
  1409. // .col-md-4:nth-of-type(2) {
  1410. // margin-top: .5rem;
  1411. // }
  1412. // }
  1413. // }
  1414. .emodal {
  1415. &-title {
  1416. color: #ee7800;
  1417. margin: 0 auto;
  1418. font-size: 18px;
  1419. }
  1420. .form-control:focus {
  1421. border-color: #ffb76f;
  1422. box-shadow: none;
  1423. }
  1424. .btn-plus {
  1425. color: #aaa;
  1426. border-color: #aaa;
  1427. }
  1428. .btn-send {
  1429. background-color: #ee7800;
  1430. color: white;
  1431. width: 30%;
  1432. border: none;
  1433. padding: 0.875rem 1rem;
  1434. border-radius: 2px;
  1435. }
  1436. .btn-dismiss {
  1437. width: 30%;
  1438. border: none;
  1439. padding: 0.875rem 1rem;
  1440. background-color: #d1d2d3;
  1441. border-radius: 2px;
  1442. color: #fff;
  1443. }
  1444. }
  1445. #putEmail_hidden {
  1446. border: 1px solid;
  1447. border-radius: 28px;
  1448. color: #ee7800 !important;
  1449. .fm-email-btn {
  1450. padding: 2px 5px 2px 5px;
  1451. }
  1452. }
  1453. /* designers.html start */
  1454. .text-primary {
  1455. color: #ee7800 !important;
  1456. }
  1457. .border-primary {
  1458. border-color: #ee7800 !important;
  1459. }
  1460. .container-searchbar {
  1461. max-width: 990px;
  1462. }
  1463. .list-head {
  1464. font-weight: bold;
  1465. font-size: 1.5rem;
  1466. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  1467. }
  1468. .search-bar-keyword {
  1469. a {
  1470. color: #ee7800;
  1471. text-decoration: none;
  1472. background-color: transparent;
  1473. }
  1474. }
  1475. .search-bar {
  1476. .search-bar-aside {
  1477. position: fixed;
  1478. top: 490px;
  1479. z-index: 999;
  1480. transform: translateX(0%);
  1481. }
  1482. .search-bar-aside-text {
  1483. position: absolute;
  1484. top: -24px;
  1485. color: #444;
  1486. background: rgba(255, 255, 255, 0.75);
  1487. padding: 0 5px;
  1488. width: 100%;
  1489. text-align: right;
  1490. cursor: pointer;
  1491. }
  1492. .search-bar-block {
  1493. padding: 0 8px 8px 0;
  1494. transform: translateX(0%);
  1495. transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  1496. background: rgba(255, 255, 255, 0.75);
  1497. }
  1498. .search-bar-aside-arrow {
  1499. transition: transform 300ms ease-in-out;
  1500. }
  1501. .is-hidden {
  1502. transform: translateX(-90%);
  1503. }
  1504. .is-rotate {
  1505. transform: rotate(180deg);
  1506. }
  1507. }
  1508. .input-group {
  1509. height: calc(1.5em + 2rem + 2px);
  1510. .input-group-text,
  1511. .keywords {
  1512. font-weight: bold;
  1513. font-size: 0.875rem !important;
  1514. }
  1515. .input-group-text {
  1516. display: flex;
  1517. -webkit-box-align: center;
  1518. align-items: center;
  1519. padding: 0.5rem 2rem !important;
  1520. margin-bottom: 0;
  1521. color: #fff;
  1522. text-align: center;
  1523. white-space: nowrap;
  1524. background-color: #ee7800;
  1525. border: 2px solid #ee7800;
  1526. line-height: 1.5;
  1527. border-radius: 0.3rem;
  1528. cursor: pointer;
  1529. }
  1530. .keywords {
  1531. border: 2px solid;
  1532. padding: 0 2rem;
  1533. }
  1534. }
  1535. .search-tab {
  1536. .bg-main {
  1537. background-color: #fafafa;
  1538. }
  1539. .dropdown-wrapper {
  1540. display: flex;
  1541. }
  1542. small {
  1543. font-size: 16px;
  1544. span {
  1545. font-size: 20px;
  1546. font-weight: bold;
  1547. }
  1548. }
  1549. .btn-original {
  1550. background-color: #fff;
  1551. font-weight: bold;
  1552. border-color: #dbdbdb;
  1553. }
  1554. .btn-original:focus {
  1555. box-shadow: none;
  1556. color: #ee7800;
  1557. border-color: #ee7800;
  1558. }
  1559. .tab-content {
  1560. .dropdown-menu {
  1561. padding: 0;
  1562. min-width: 20rem;
  1563. max-height: 300px;
  1564. overflow-y: auto;
  1565. transform: none !important;
  1566. top: 38px !important;
  1567. inset: auto !important;
  1568. }
  1569. }
  1570. .form-check-input,
  1571. .form-check-label {
  1572. cursor: pointer;
  1573. }
  1574. .form-check-input:checked {
  1575. background-color: #000;
  1576. border-color: #000;
  1577. }
  1578. .form-check-input:focus {
  1579. box-shadow: none !important;
  1580. }
  1581. .search-tab-filter {
  1582. a {
  1583. color: #000;
  1584. &:hover {
  1585. text-decoration: none;
  1586. color: #ee7800;
  1587. }
  1588. }
  1589. .divider::before {
  1590. content: "";
  1591. border: 0.5px solid #aaaaaa;
  1592. }
  1593. }
  1594. }
  1595. .designer-container {
  1596. h6 {
  1597. color: #000;
  1598. }
  1599. img {
  1600. width: 100%;
  1601. height: 300px;
  1602. object-fit: cover;
  1603. }
  1604. .item-card-person {
  1605. width: 80px;
  1606. height: 80px;
  1607. border-radius: 50%;
  1608. background-size: cover;
  1609. box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.15);
  1610. }
  1611. .item-card-company,
  1612. h6 {
  1613. -webkit-box-orient: vertical;
  1614. font-size: 0.875rem;
  1615. overflow: hidden;
  1616. text-overflow: ellipsis;
  1617. display: -webkit-box;
  1618. -webkit-line-clamp: 1;
  1619. line-height: 1.25;
  1620. height: 1.09375rem;
  1621. }
  1622. .ad-image {
  1623. width: 100%;
  1624. height: 295px;
  1625. background-position: center center;
  1626. background-repeat: no-repeat;
  1627. background-size: contain;
  1628. image-rendering: -webkit-optimize-contrast;
  1629. }
  1630. }
  1631. .search-tab-itemResult img {
  1632. cursor: pointer;
  1633. }
  1634. .btn-box {
  1635. position: fixed;
  1636. right: 13px;
  1637. bottom: 170px;
  1638. // bottom: 225px;
  1639. z-index: 10;
  1640. font-size: 32px;
  1641. width: 50px;
  1642. height: 50px;
  1643. cursor: pointer;
  1644. @media (max-width: 767px) {
  1645. right: 5px;
  1646. bottom: 85px;
  1647. }
  1648. a {
  1649. color: #000;
  1650. display: flex;
  1651. justify-content: center;
  1652. align-items: center;
  1653. }
  1654. button {
  1655. width: 46px;
  1656. height: 46px;
  1657. margin: 3px 0;
  1658. border: none;
  1659. border-radius: 5px;
  1660. box-shadow: 0px 2px 3px #ccc;
  1661. background: rgba(255, 255, 255, 0.9);
  1662. &:hover {
  1663. transition: all .5s;
  1664. background: rgb(255, 255, 255);
  1665. }
  1666. &:hover img {
  1667. filter: invert(50%) sepia(50%) saturate(4600%) hue-rotate(365deg) brightness(100%) contrast(100%);
  1668. }
  1669. img {
  1670. width: 20px;
  1671. }
  1672. }
  1673. .btn-gotop {
  1674. img {
  1675. margin-top: -7px;
  1676. }
  1677. }
  1678. // button {
  1679. // width: 50px;
  1680. // height: 50px;
  1681. // border: none;
  1682. // &:hover {
  1683. // .top_img {
  1684. // box-shadow: 1px 3px 11px -3px rgba(0, 0, 0, 0.35);
  1685. // }
  1686. // }
  1687. // .top_img {
  1688. // width: 50px;
  1689. // height: 50px;
  1690. // display: block;
  1691. // background-size: cover;
  1692. // background-image: url("https://hhh.com.tw/assets/images/section/icon/new-tool-icon/top1.svg");
  1693. // }
  1694. // }
  1695. // .note,
  1696. // .user,
  1697. // .cart,
  1698. // .top_img {
  1699. // background: #fff;
  1700. // box-shadow: 1px 3px 11px -3px rgba(0, 0, 0, 0.55);
  1701. // &:hover {
  1702. // box-shadow: 1px 3px 11px -3px rgba(0, 0, 0, 0.35);
  1703. // }
  1704. // }
  1705. // .note {
  1706. // margin-bottom: 10px;
  1707. // img {
  1708. // width: 22px;
  1709. // height: 22px;
  1710. // margin-left: 5px;
  1711. // }
  1712. // }
  1713. // .user {
  1714. // margin-bottom: 10px;
  1715. // img {
  1716. // width: 20px;
  1717. // height: 20px;
  1718. // }
  1719. // }
  1720. // .cart {
  1721. // img {
  1722. // width: 25px;
  1723. // height: 25px;
  1724. // }
  1725. // }
  1726. }
  1727. .fixed-bottom {
  1728. padding: 10px 0;
  1729. position: fixed !important;
  1730. bottom: 0;
  1731. right: 0;
  1732. left: 0;
  1733. background-color: white;
  1734. justify-content: space-evenly;
  1735. box-shadow: 0 8px 15px 2px rgba(0, 0, 0, 0.15);
  1736. display: none;
  1737. @media (max-width: 767px) {
  1738. display: flex;
  1739. }
  1740. div {
  1741. padding: 0 15px;
  1742. }
  1743. a {
  1744. display: flex;
  1745. flex-direction: column;
  1746. justify-content: center;
  1747. align-items: center;
  1748. cursor: pointer;
  1749. img {
  1750. width: 70px;
  1751. height: auto;
  1752. max-width: 100%;
  1753. }
  1754. span {
  1755. margin: 5px 0;
  1756. }
  1757. }
  1758. }
  1759. .designerlist-footer {
  1760. @media (max-width: 767px) {
  1761. display: none;
  1762. }
  1763. }
  1764. .designer-pagination {
  1765. @media (max-width: 767px) {
  1766. margin: 0 70px 115px;
  1767. }
  1768. }
  1769. /* designers.html end */
  1770. /* columns.html start */
  1771. #columns {
  1772. .dropdown-menu li:hover .sub-menu {
  1773. visibility: visible;
  1774. }
  1775. // .dropdown:hover .dropdown-menu {
  1776. // display: block;
  1777. // }
  1778. // .dropdown-menu>li:hover>.thdmenu-block {
  1779. // display: block;
  1780. // }
  1781. }
  1782. /* columns.html end */