list-style.css 32 KB

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