list-style.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686
  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. 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);
  579. -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);
  580. -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);
  581. padding-top: 5px;
  582. padding-bottom: 5px;
  583. background-color: white !important;
  584. z-index: 99;
  585. }
  586. .navbar .container-fluid {
  587. padding: 0 2.5rem;
  588. }
  589. @media (max-width: 1100px) {
  590. .navbar .container-fluid {
  591. padding: 0 0.6rem;
  592. }
  593. }
  594. .navbar-toggler {
  595. padding-left: 0;
  596. border-color: transparent !important;
  597. }
  598. .navbar-toggler:focus {
  599. box-shadow: none;
  600. }
  601. .navbar-toggler-icon {
  602. display: flex;
  603. justify-items: center;
  604. }
  605. .navbar-toggler-icon i {
  606. font-size: 25px;
  607. line-height: 30px;
  608. display: inline-block;
  609. }
  610. .navbar-search, .navbar-login {
  611. padding-right: 2px;
  612. }
  613. .navbar-login {
  614. cursor: pointer;
  615. }
  616. .navbar-search-magnify {
  617. cursor: pointer;
  618. }
  619. .navbar-brand {
  620. font-size: 1.5rem;
  621. }
  622. .navbar-brand.navbar-logo {
  623. display: flex;
  624. align-items: center;
  625. }
  626. .navbar-brand .navbar-login {
  627. font-size: 1rem;
  628. color: #ee7800;
  629. text-decoration: none;
  630. }
  631. .navbar .nav-link {
  632. cursor: pointer;
  633. }
  634. @media (max-width: 1100px) {
  635. .navbar .nav-link {
  636. font-size: 0.9rem;
  637. }
  638. }
  639. .navbar .nav-link .expand {
  640. transition: all 0.3s;
  641. }
  642. .navbar .nav-link .expand i {
  643. color: #D3D3D3;
  644. }
  645. .navbar .nav-link .rotate {
  646. transform: rotate(180deg);
  647. }
  648. @media (max-width: 991px) {
  649. .navbar .navbar-nav > li {
  650. padding: 15px 0;
  651. }
  652. .navbar .navbar-nav li {
  653. border-bottom: 1px solid #F4F4F4;
  654. }
  655. .navbar .navbar-nav .dropdown-menu {
  656. border: none;
  657. margin: 15px 0 -15px;
  658. }
  659. .navbar .navbar-nav .dropdown-menu .dropdown-sub:first-child {
  660. border-top: 1px solid #F4F4F4;
  661. }
  662. .navbar .navbar-nav .dropdown-menu .dropdown-sub:last-child {
  663. border-bottom: none;
  664. }
  665. .navbar .navbar-nav .dropdown-sub .dropdown-menu {
  666. margin: 0;
  667. }
  668. .navbar .navbar-nav .dropdown-sub .dropdown-menu li {
  669. padding: 8px 50px;
  670. }
  671. .navbar .navbar-nav .dropdown-sub .dropdown-menu li:first-child {
  672. border-top: 1px solid #F4F4F4;
  673. }
  674. .navbar .navbar-nav .dropdown-sub .dropdown-menu li:last-child {
  675. border-bottom: none;
  676. }
  677. }
  678. .navbar .navbar-nav .nav-item {
  679. margin: 0 0.5rem;
  680. }
  681. @media (max-width: 1200px) {
  682. .navbar .navbar-nav .nav-item {
  683. margin: 0 0.25rem;
  684. }
  685. }
  686. .navbar .navbar-nav .nav-item .dropbox {
  687. visibility: hidden;
  688. opacity: 0;
  689. transition: all 0.4s;
  690. position: absolute;
  691. width: 100vw;
  692. top: 100%;
  693. left: 0;
  694. background-color: rgba(255, 255, 255, 0.932);
  695. padding-top: 1.5rem;
  696. padding-bottom: 3rem;
  697. }
  698. .navbar .navbar-nav .nav-item .dropbox ul {
  699. padding-left: 0;
  700. }
  701. .navbar .navbar-nav .nav-item .dropbox-item {
  702. margin-bottom: 0.5rem;
  703. }
  704. .navbar .navbar-nav .nav-item .dropbox-item.first {
  705. font-size: 1.1rem;
  706. font-weight: 600;
  707. }
  708. .navbar .navbar-nav .nav-item .dropbox-item.first .dropbox-link {
  709. color: black;
  710. }
  711. .navbar .navbar-nav .nav-item .dropbox-link {
  712. text-decoration: none;
  713. color: rgb(146, 146, 146);
  714. font-size: 0.85rem;
  715. }
  716. .navbar .navbar-nav .nav-item .dropbox-link:hover {
  717. color: #ee7800;
  718. }
  719. .navbar .navbar-nav .nav-item .dropbox-link.dropbox-btn {
  720. border: 1px solid rgb(146, 146, 146);
  721. padding: 0.5rem 2rem;
  722. border-radius: 5px;
  723. width: 85%;
  724. min-width: 7rem;
  725. max-width: 11rem;
  726. }
  727. .navbar .navbar-nav .nav-item .dropbox-btn {
  728. display: flex;
  729. align-items: center;
  730. justify-content: center;
  731. }
  732. .navbar .navbar-nav .nav-item .dropbox .container {
  733. max-width: 900px;
  734. width: 70%;
  735. }
  736. .navbar .navbar-nav .nav-item .dropbox .container.stylebox {
  737. transform: translateX(-30%);
  738. }
  739. .navbar .navbar-nav .nav-item .dropbox .container.designerbox {
  740. transform: translateX(-5%);
  741. }
  742. .navbar .navbar-nav .nav-item .dropbox .container.newbox {
  743. transform: translateX(15%);
  744. }
  745. .navbar .navbar-nav .nav-item .dropbox .container.forumbox {
  746. transform: translateX(50%);
  747. }
  748. .navbar .navbar-nav .nav-item .nav-link {
  749. position: relative;
  750. font-size: 19px;
  751. cursor: pointer;
  752. color: #34404b;
  753. border-bottom: 4px solid transparent;
  754. }
  755. @media (max-width: 1200px) {
  756. .navbar .navbar-nav .nav-item .nav-link {
  757. font-size: 17px;
  758. }
  759. }
  760. @media (max-width: 991px) {
  761. .navbar .navbar-nav .nav-item .nav-link {
  762. border-bottom: none;
  763. }
  764. }
  765. .navbar .navbar-nav .nav-item .nav-link a {
  766. transition: all 0.2s;
  767. }
  768. .navbar .navbar-nav .nav-item .nav-link:hover {
  769. border-bottom: 4px solid #ee7800;
  770. }
  771. @media (max-width: 991px) {
  772. .navbar .navbar-nav .nav-item .nav-link:hover {
  773. color: #ee7800;
  774. border-bottom: none;
  775. }
  776. .navbar .navbar-nav .nav-item .nav-link:hover a {
  777. color: #ee7800;
  778. }
  779. }
  780. .navbar .navbar-nav .nav-item .nav-link span {
  781. display: block;
  782. }
  783. .navbar .navbar-nav .nav-item .nav-link .search-btn {
  784. border: none;
  785. background: transparent;
  786. padding-top: 4px;
  787. }
  788. @media (max-width: 1200px) {
  789. .navbar .navbar-nav .nav-item .nav-link .search-btn {
  790. padding-top: 3px;
  791. }
  792. }
  793. .navbar .navbar-nav .nav-item .nav-link .search-btn img {
  794. padding-bottom: 4px;
  795. }
  796. @media (max-width: 1200px) {
  797. .navbar .navbar-nav .nav-item .nav-link .search-btn img {
  798. padding-bottom: 3px;
  799. }
  800. }
  801. @media (max-width: 1100px) {
  802. .navbar .navbar-nav .nav-item .nav-link .search-btn img {
  803. padding-bottom: 2px;
  804. }
  805. }
  806. .navbar .navbar-nav .nav-item .search-btn {
  807. border: none;
  808. background: transparent;
  809. }
  810. .navbar .navbar-nav .nav-item:hover > .dropbox {
  811. visibility: visible;
  812. opacity: 1;
  813. }
  814. .navbar .navbar-nav .nav-item.lg .container {
  815. max-width: 1200px;
  816. width: 90%;
  817. }
  818. .navbar .navbar-nav .nav-item.lg .dropbox-link {
  819. text-decoration: none;
  820. color: rgb(146, 146, 146);
  821. font-size: 0.7rem;
  822. }
  823. .navbar .navbar-nav .nav-item.lg .dropbox-link:hover {
  824. color: #ee7800;
  825. }
  826. .navbar .navbar-nav .nav-item.lg .dropbox-item {
  827. margin-bottom: 0.1rem;
  828. }
  829. .navbar .navbar-nav .nav-item.lg .dropbox-item.first .dropbox-link {
  830. font-size: 0.85rem;
  831. }
  832. .navbar-search .container {
  833. max-width: 900px;
  834. width: 70%;
  835. }
  836. @media (max-width: 1100px) {
  837. .navbar-search .container {
  838. width: 90%;
  839. }
  840. }
  841. .navbar-search .dropbox {
  842. visibility: hidden;
  843. opacity: 0;
  844. transition: all 0.2s;
  845. position: absolute;
  846. width: 100vw;
  847. top: 100%;
  848. left: 0;
  849. background-color: rgba(255, 255, 255, 0.932);
  850. padding-top: 1.5rem;
  851. padding-bottom: 3rem;
  852. }
  853. .navbar-search .dropbox.open {
  854. visibility: visible;
  855. opacity: 1;
  856. }
  857. .navbar-search .dropbox__searchtab {
  858. width: 100%;
  859. background-color: gray;
  860. border-radius: 3px;
  861. padding: 0.2rem 1rem;
  862. padding-bottom: 1rem;
  863. }
  864. .navbar-search .dropbox__hots__title {
  865. font-size: 1rem;
  866. color: rgb(107, 107, 107);
  867. }
  868. .navbar-search .dropbox__hots__link {
  869. font-size: 0.9rem;
  870. color: rgb(146, 146, 146);
  871. text-decoration: none;
  872. cursor: pointer;
  873. margin: 0 0.2rem;
  874. }
  875. .navbar-search .dropbox__searchBar__input {
  876. width: 100%;
  877. outline: none;
  878. border: 2px solid #ee7800;
  879. border-radius: 5rem;
  880. padding: 0.3rem 1.2rem;
  881. font-size: 0.9rem;
  882. }
  883. .navbar-search .dropbox__searchBar__submit {
  884. outline: none;
  885. border: none;
  886. font-size: 0.9rem;
  887. background-color: transparent;
  888. color: #ee7800;
  889. margin-left: -1rem;
  890. transform: translateX(-100%);
  891. padding: 0 0.6rem;
  892. }
  893. .navbar-search .dropbox__tab .nav-item {
  894. margin: 0 0.6rem;
  895. }
  896. .navbar-search .dropbox .nav-item-link {
  897. border: none;
  898. outline: none;
  899. font-size: 1rem;
  900. color: white;
  901. padding: 3px;
  902. position: relative;
  903. }
  904. .navbar-search .dropbox .nav-item-link::after {
  905. position: absolute;
  906. content: "";
  907. top: 0;
  908. left: 0;
  909. width: 100%;
  910. height: 100%;
  911. border-bottom: 3px solid #ee7800;
  912. opacity: 0;
  913. }
  914. .navbar-search .dropbox .nav-item-link.active::after {
  915. opacity: 1;
  916. }
  917. .navbar-search .dropbox-tab-content .tabpar {
  918. display: flex;
  919. padding-top: 0.5rem;
  920. }
  921. .navbar-search .dropbox-tab-content .tabpar .col {
  922. margin: 0 0.6rem;
  923. }
  924. .navbar-search .dropbox-tab-content .tabpar .select {
  925. font-size: 1rem;
  926. padding: 0.6rem;
  927. border-radius: 3px;
  928. color: rgb(116, 116, 116);
  929. }
  930. .navbar-search .dropbox-tab-content .tabpar button {
  931. border: none;
  932. outline: none;
  933. background-color: #ee7800;
  934. border-radius: 3px;
  935. color: white;
  936. font-size: 1rem;
  937. padding: 0.6rem;
  938. }
  939. .navbar-search .dropbox-tab-content .tabpar .image-search {
  940. border: none;
  941. outline: none;
  942. background-color: #ee7800;
  943. border-radius: 3px;
  944. color: white;
  945. font-size: 1rem;
  946. }
  947. .navbar-search .dropbox-tab-content .tabpar .article-btn {
  948. border: none;
  949. outline: none;
  950. background-color: #ee7800;
  951. border-radius: 3px;
  952. color: white;
  953. font-size: 1rem;
  954. padding: 0.6rem;
  955. }
  956. .navbar-search .dropbox-tab-content .tabpar .home-btn {
  957. border: none;
  958. outline: none;
  959. background-color: #ee7800;
  960. border-radius: 3px;
  961. color: white;
  962. font-size: 1rem;
  963. padding: 0.6rem;
  964. }
  965. .navbar #search-btn {
  966. font-size: 20px;
  967. border: none;
  968. background: transparent;
  969. }
  970. .navbar-search .dropbox__tab .nav-item-link.active .nav-item-link::after {
  971. opacity: 1;
  972. }
  973. .navbar-main.sticky {
  974. position: fixed;
  975. top: 0;
  976. width: 100%;
  977. }
  978. .navbar-main.sticky + .sec-02 {
  979. padding-top: 53.5px;
  980. }
  981. .shadow-item {
  982. position: absolute;
  983. display: none;
  984. height: 3px;
  985. top: 51px;
  986. width: 100vw;
  987. right: 0;
  988. left: 0;
  989. margin: auto;
  990. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1607843137);
  991. border-bottom: 1px solid #ccc;
  992. }
  993. @media (max-width: 991px) {
  994. .shadow-item {
  995. display: block;
  996. }
  997. }
  998. .sec-02__slider {
  999. width: 100%;
  1000. height: 100%;
  1001. }
  1002. .sec-02__slider .slide-item {
  1003. width: 100%;
  1004. height: 74vh;
  1005. background-position: center center;
  1006. background-size: cover;
  1007. background-repeat: no-repeat;
  1008. cursor: pointer;
  1009. }
  1010. .sec-02 .slick-prev:before,
  1011. .sec-02 .slick-next:before {
  1012. display: none;
  1013. }
  1014. .sec-02 .slick-prev {
  1015. left: 15px;
  1016. z-index: 3;
  1017. }
  1018. .sec-02 .slick-next {
  1019. right: 15px;
  1020. }
  1021. a {
  1022. text-decoration: none;
  1023. }
  1024. .text-hhh {
  1025. color: #ee7800;
  1026. }
  1027. .content {
  1028. background-color: #fcfcfc;
  1029. padding: 1rem 30px 0.5rem;
  1030. }
  1031. .content .infoCard {
  1032. color: #727679;
  1033. text-align: center;
  1034. padding: 1rem;
  1035. background-color: rgba(244, 244, 244, 0.8);
  1036. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  1037. transform: translateY(-150px);
  1038. }
  1039. .content .infoCard__seo {
  1040. font-size: 0.9rem;
  1041. text-align: center;
  1042. padding: 1rem;
  1043. display: block;
  1044. line-height: 1.2;
  1045. }
  1046. .content .infoCard__approve {
  1047. color: #ff0000;
  1048. }
  1049. .content .infoCard__avatar {
  1050. width: 200px;
  1051. height: 200px;
  1052. border: 3px solid #fff;
  1053. border-radius: 50%;
  1054. background-size: cover;
  1055. background-repeat: no-repeat;
  1056. }
  1057. .content .infoCard__detail aside {
  1058. line-height: 2;
  1059. font-size: 0.9rem;
  1060. }
  1061. .content .infoCard__detail__l {
  1062. flex-basis: 30%;
  1063. display: flex;
  1064. justify-content: flex-end;
  1065. flex-grow: 0;
  1066. max-width: 30%;
  1067. }
  1068. .content .infoCard__detail__l.title {
  1069. color: #aaaaaa;
  1070. font-size: 1.125rem;
  1071. font-weight: 400;
  1072. transform: translateX(-15px);
  1073. }
  1074. .content .infoCard__detail__r {
  1075. flex-basis: 70%;
  1076. text-align: start;
  1077. flex-grow: 0;
  1078. max-width: 70%;
  1079. word-break: break-all;
  1080. }
  1081. .content .infoCard__detail__r a {
  1082. color: #727679;
  1083. }
  1084. .content .infoCard__detail__r a:hover {
  1085. color: #ee7800;
  1086. }
  1087. .content .infoCard .scMedia {
  1088. display: flex;
  1089. padding: 1rem 0;
  1090. width: 100%;
  1091. margin-left: auto;
  1092. margin-right: auto;
  1093. justify-content: space-around;
  1094. }
  1095. .content .infoCard .scMedia a {
  1096. width: 16%;
  1097. }
  1098. .content .infoCard .scMedia a img {
  1099. width: 100%;
  1100. }
  1101. .content .infoCard .scMedia span {
  1102. width: 16%;
  1103. cursor: pointer;
  1104. }
  1105. .content .infoCard .scMedia span img {
  1106. width: 100%;
  1107. }
  1108. .infoContent a {
  1109. color: #727679;
  1110. text-decoration: none;
  1111. font-size: 0.9rem;
  1112. }
  1113. .infoContent a.active {
  1114. color: #ee7800;
  1115. }
  1116. .infoContent .nav-item {
  1117. margin: 0 0.8rem;
  1118. width: auto;
  1119. }
  1120. .infoContent .nav-item-link {
  1121. display: block;
  1122. padding: 0.5rem 2.5rem;
  1123. text-decoration: none;
  1124. background-color: transparent;
  1125. font-size: 0.9rem;
  1126. color: #727679;
  1127. transition: all 0.3s;
  1128. -webkit-appearance: none !important;
  1129. }
  1130. @media (max-width: 1200px) {
  1131. .infoContent .nav-item-link {
  1132. padding: 0.5rem 0.8rem;
  1133. }
  1134. }
  1135. .infoContent .nav-item-link:hover {
  1136. color: #ee7800;
  1137. }
  1138. .infoContent .nav-item-link.active {
  1139. color: #ee7800;
  1140. border-bottom: 2px solid #ee7800;
  1141. }
  1142. .infoContent .likeSee {
  1143. margin-top: 0.8rem;
  1144. }
  1145. @media (max-width: 1200px) {
  1146. .infoContent .likeSee {
  1147. width: 12%;
  1148. position: absolute;
  1149. right: -1.5rem;
  1150. bottom: -1.5rem;
  1151. }
  1152. }
  1153. .infoContent .likeSee span {
  1154. color: #727679;
  1155. font-size: 0.9rem;
  1156. cursor: pointer;
  1157. }
  1158. .infoContent .likeSee span:hover {
  1159. color: #ee7800;
  1160. }
  1161. .infoContent .likeSee__divider {
  1162. height: 12px;
  1163. display: inline-block;
  1164. border: 0.5px solid #9d9d9d;
  1165. }
  1166. .infoContent .card {
  1167. box-shadow: 0 1px 10px #eee;
  1168. margin: 0 0 1.5rem;
  1169. border: none;
  1170. overflow: hidden;
  1171. }
  1172. .infoContent .card:hover .card__bgImg {
  1173. transform: scale(1.1);
  1174. }
  1175. .infoContent .card__bgImg {
  1176. height: 293px;
  1177. background-repeat: no-repeat;
  1178. background-size: cover;
  1179. background-position: center;
  1180. position: relative;
  1181. display: flex;
  1182. justify-content: center;
  1183. align-items: center;
  1184. -webkit-box-pack: center;
  1185. transition: all 0.4s;
  1186. }
  1187. .infoContent .card-body {
  1188. padding: 0.5rem 1rem;
  1189. }
  1190. .infoContent .card__title {
  1191. font-size: 1.125rem;
  1192. -webkit-box-orient: vertical;
  1193. box-orient: vertical;
  1194. -webkit-line-clamp: 2;
  1195. height: 54px;
  1196. overflow: hidden;
  1197. text-overflow: ellipsis;
  1198. display: -webkit-box;
  1199. font-weight: bold;
  1200. margin: 0.5rem 0;
  1201. color: #727679;
  1202. }
  1203. .infoContent .card__tag {
  1204. margin: 0 0.2rem 0 0;
  1205. }
  1206. .infoContent .card__tag:hover {
  1207. color: #ee7800;
  1208. }
  1209. .infoContent .company__block {
  1210. margin: 0 0 2rem;
  1211. }
  1212. .infoContent .company__title {
  1213. color: #aaaaaa;
  1214. font-size: 2rem;
  1215. font-weight: bold;
  1216. }
  1217. .infoContent .company__text {
  1218. color: #43484c;
  1219. }
  1220. .nav-collapse-fixed {
  1221. position: fixed;
  1222. top: 52px;
  1223. z-index: -1;
  1224. width: 100%;
  1225. opacity: 0;
  1226. transition: opacity 0.5s;
  1227. }
  1228. @media (max-width: 1200px) {
  1229. .nav-collapse-fixed {
  1230. width: auto;
  1231. }
  1232. }
  1233. .nav-collapse-fixed.sticky {
  1234. display: block;
  1235. opacity: 1;
  1236. z-index: 20;
  1237. }
  1238. .nav-collapse-fixed .nav-collpase {
  1239. padding: 1rem 0;
  1240. background-color: #fcfcfc;
  1241. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  1242. }
  1243. .navbar-main.sticky + .hero {
  1244. padding-top: 53px;
  1245. }
  1246. .page-link {
  1247. color: #727679;
  1248. }
  1249. .page-link:hover {
  1250. color: #fff;
  1251. background-color: #ee7800;
  1252. border-color: #ee7800;
  1253. }
  1254. .page-link:focus {
  1255. color: #fff;
  1256. background-color: #ee7800;
  1257. border-color: #ee7800;
  1258. box-shadow: none;
  1259. }
  1260. .page-active {
  1261. color: #fff;
  1262. background-color: #ee7800;
  1263. border-color: #ee7800;
  1264. }
  1265. .fixed-btn {
  1266. position: fixed;
  1267. right: 15px;
  1268. bottom: 2rem;
  1269. }
  1270. .fixed-btn .btn-gotop,
  1271. .fixed-btn .btn-login,
  1272. .fixed-btn .btn-favor {
  1273. cursor: pointer;
  1274. padding: 1.2rem 0.8rem;
  1275. background-color: rgba(255, 255, 255, 0.897);
  1276. display: flex;
  1277. align-items: center;
  1278. 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);
  1279. -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);
  1280. -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);
  1281. }
  1282. .footer__block-socials {
  1283. padding-left: 0;
  1284. display: flex;
  1285. align-items: center;
  1286. justify-content: space-between;
  1287. }
  1288. @media (max-width: 1100px) {
  1289. .footer__block-socials img {
  1290. width: 30px;
  1291. }
  1292. }
  1293. @media (max-width: 575px) {
  1294. .footer__block-socials {
  1295. justify-content: center;
  1296. }
  1297. .footer__block-socials li {
  1298. margin: 5px;
  1299. }
  1300. }
  1301. .like {
  1302. display: none;
  1303. }
  1304. .emodal-title {
  1305. color: #ee7800;
  1306. margin: 0 auto;
  1307. font-size: 18px;
  1308. }
  1309. .emodal .form-control:focus {
  1310. border-color: #ffb76f;
  1311. box-shadow: none;
  1312. }
  1313. .emodal .btn-plus {
  1314. color: #aaa;
  1315. border-color: #aaa;
  1316. }
  1317. .emodal .btn-send {
  1318. background-color: #ee7800;
  1319. color: white;
  1320. width: 30%;
  1321. border: none;
  1322. padding: 0.875rem 1rem;
  1323. border-radius: 2px;
  1324. }
  1325. .emodal .btn-dismiss {
  1326. width: 30%;
  1327. border: none;
  1328. padding: 0.875rem 1rem;
  1329. background-color: #d1d2d3;
  1330. border-radius: 2px;
  1331. color: #fff;
  1332. }
  1333. #putEmail_hidden {
  1334. border: 1px solid;
  1335. border-radius: 28px;
  1336. color: #ee7800 !important;
  1337. }
  1338. #putEmail_hidden .fm-email-btn {
  1339. padding: 2px 5px 2px 5px;
  1340. }
  1341. /* designers.html start */
  1342. .text-primary {
  1343. color: #ee7800 !important;
  1344. }
  1345. .border-primary {
  1346. border-color: #ee7800 !important;
  1347. }
  1348. .container-searchbar {
  1349. max-width: 990px;
  1350. }
  1351. .list-head {
  1352. font-weight: bold;
  1353. font-size: 1.5rem;
  1354. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  1355. }
  1356. .search-bar-keyword a {
  1357. color: #ee7800;
  1358. text-decoration: none;
  1359. background-color: transparent;
  1360. }
  1361. .search-bar .search-bar-aside {
  1362. position: fixed;
  1363. top: 490px;
  1364. z-index: 999;
  1365. transform: translateX(0%);
  1366. }
  1367. .search-bar .search-bar-aside-text {
  1368. position: absolute;
  1369. top: -24px;
  1370. color: #444;
  1371. background: rgba(255, 255, 255, 0.75);
  1372. padding: 0 5px;
  1373. width: 100%;
  1374. text-align: right;
  1375. cursor: pointer;
  1376. }
  1377. .search-bar .search-bar-block {
  1378. padding: 0 8px 8px 0;
  1379. transform: translateX(0%);
  1380. transition: transform 300ms ease-in-out;
  1381. background: rgba(255, 255, 255, 0.75);
  1382. }
  1383. .search-bar .search-bar-aside-arrow {
  1384. transition: transform 300ms ease-in-out;
  1385. }
  1386. .search-bar .is-hidden {
  1387. transform: translateX(-90%);
  1388. }
  1389. .search-bar .is-rotate {
  1390. transform: rotate(180deg);
  1391. }
  1392. .input-group {
  1393. height: calc(1.5em + 2rem + 2px);
  1394. }
  1395. .input-group .input-group-text,
  1396. .input-group .keywords {
  1397. font-weight: bold;
  1398. font-size: 0.875rem !important;
  1399. }
  1400. .input-group .input-group-text {
  1401. display: flex;
  1402. align-items: center;
  1403. padding: 0.5rem 2rem !important;
  1404. margin-bottom: 0;
  1405. color: #fff;
  1406. text-align: center;
  1407. white-space: nowrap;
  1408. background-color: #ee7800;
  1409. border: 2px solid #ee7800;
  1410. line-height: 1.5;
  1411. border-radius: 0.3rem;
  1412. cursor: pointer;
  1413. }
  1414. .input-group .keywords {
  1415. border: 2px solid;
  1416. padding: 0 2rem;
  1417. }
  1418. .search-tab .bg-main {
  1419. background-color: #fafafa;
  1420. }
  1421. .search-tab .dropdown-wrapper {
  1422. display: flex;
  1423. }
  1424. .search-tab small {
  1425. font-size: 16px;
  1426. }
  1427. .search-tab small span {
  1428. font-size: 20px;
  1429. font-weight: bold;
  1430. }
  1431. .search-tab .btn-original {
  1432. background-color: #fff;
  1433. font-weight: bold;
  1434. border-color: #dbdbdb;
  1435. }
  1436. .search-tab .btn-original:focus {
  1437. box-shadow: none;
  1438. color: #ee7800;
  1439. border-color: #ee7800;
  1440. }
  1441. .search-tab .tab-content .dropdown-menu {
  1442. padding: 0;
  1443. min-width: 20rem;
  1444. max-height: 300px;
  1445. overflow-y: auto;
  1446. transform: none !important;
  1447. top: 38px !important;
  1448. inset: auto !important;
  1449. }
  1450. .search-tab .form-check-input,
  1451. .search-tab .form-check-label {
  1452. cursor: pointer;
  1453. }
  1454. .search-tab .form-check-input:checked {
  1455. background-color: #000;
  1456. border-color: #000;
  1457. }
  1458. .search-tab .form-check-input:focus {
  1459. box-shadow: none !important;
  1460. }
  1461. .search-tab .search-tab-filter a {
  1462. color: #000;
  1463. }
  1464. .search-tab .search-tab-filter a:hover {
  1465. text-decoration: none;
  1466. color: #ee7800;
  1467. }
  1468. .search-tab .search-tab-filter .divider::before {
  1469. content: "";
  1470. border: 0.5px solid #aaaaaa;
  1471. }
  1472. .designer-container h6 {
  1473. color: #000;
  1474. }
  1475. .designer-container img {
  1476. width: 100%;
  1477. height: 300px;
  1478. -o-object-fit: cover;
  1479. object-fit: cover;
  1480. }
  1481. .designer-container .item-card-person {
  1482. width: 80px;
  1483. height: 80px;
  1484. border-radius: 50%;
  1485. background-size: cover;
  1486. box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.15);
  1487. }
  1488. .designer-container .item-card-company,
  1489. .designer-container h6 {
  1490. -webkit-box-orient: vertical;
  1491. font-size: 0.875rem;
  1492. overflow: hidden;
  1493. text-overflow: ellipsis;
  1494. display: -webkit-box;
  1495. -webkit-line-clamp: 1;
  1496. line-height: 1.25;
  1497. height: 1.09375rem;
  1498. }
  1499. .designer-container .ad-image {
  1500. width: 100%;
  1501. height: 295px;
  1502. background-position: center center;
  1503. background-repeat: no-repeat;
  1504. background-size: contain;
  1505. image-rendering: -webkit-optimize-contrast;
  1506. }
  1507. .search-tab-itemResult img {
  1508. cursor: pointer;
  1509. }
  1510. .btn-box {
  1511. position: fixed;
  1512. right: 13px;
  1513. bottom: 170px;
  1514. z-index: 10;
  1515. font-size: 32px;
  1516. width: 50px;
  1517. height: 50px;
  1518. cursor: pointer;
  1519. }
  1520. @media (max-width: 767px) {
  1521. .btn-box {
  1522. right: 5px;
  1523. bottom: 85px;
  1524. }
  1525. }
  1526. .btn-box a {
  1527. color: #000;
  1528. display: flex;
  1529. justify-content: center;
  1530. align-items: center;
  1531. }
  1532. .btn-box button {
  1533. width: 46px;
  1534. height: 46px;
  1535. margin: 3px 0;
  1536. border: none;
  1537. border-radius: 5px;
  1538. box-shadow: 0px 2px 3px #ccc;
  1539. background: rgba(255, 255, 255, 0.9);
  1540. }
  1541. .btn-box button:hover {
  1542. transition: all 0.5s;
  1543. background: rgb(255, 255, 255);
  1544. }
  1545. .btn-box button:hover img {
  1546. filter: invert(50%) sepia(50%) saturate(4600%) hue-rotate(365deg) brightness(100%) contrast(100%);
  1547. }
  1548. .btn-box button img {
  1549. width: 20px;
  1550. }
  1551. .btn-box .btn-gotop img {
  1552. margin-top: -7px;
  1553. }
  1554. .fixed-bottom {
  1555. padding: 10px 0;
  1556. position: fixed !important;
  1557. bottom: 0;
  1558. right: 0;
  1559. left: 0;
  1560. background-color: white;
  1561. justify-content: space-evenly;
  1562. box-shadow: 0 8px 15px 2px rgba(0, 0, 0, 0.15);
  1563. display: none;
  1564. }
  1565. @media (max-width: 767px) {
  1566. .fixed-bottom {
  1567. display: flex;
  1568. }
  1569. }
  1570. .fixed-bottom div {
  1571. padding: 0 15px;
  1572. }
  1573. .fixed-bottom a {
  1574. display: flex;
  1575. flex-direction: column;
  1576. justify-content: center;
  1577. align-items: center;
  1578. cursor: pointer;
  1579. }
  1580. .fixed-bottom a img {
  1581. width: 70px;
  1582. height: auto;
  1583. max-width: 100%;
  1584. }
  1585. .fixed-bottom a span {
  1586. margin: 5px 0;
  1587. }
  1588. @media (max-width: 767px) {
  1589. .designerlist-footer {
  1590. display: none;
  1591. }
  1592. }
  1593. @media (max-width: 767px) {
  1594. .designer-pagination {
  1595. margin: 0 70px 115px;
  1596. }
  1597. }
  1598. /* designers.html end */
  1599. /* columns.html start */
  1600. #columns .dropdown-menu li:hover .sub-menu {
  1601. visibility: visible;
  1602. }
  1603. /* columns.html end *//*# sourceMappingURL=list-style.css.map */