all.scss 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975
  1. * {
  2. font-weight: 500;
  3. font-family: 'Noto Sans TC', sans-serif !important;
  4. }
  5. .fa,
  6. .far,
  7. .fas {
  8. font-family: Font Awesome\ 5 Free !important;
  9. }
  10. body {
  11. overflow-x: hidden;
  12. // &.menu-show {
  13. // height: 100vh;
  14. // overflow: hidden;
  15. // }
  16. }
  17. /* Bootstrap Start */
  18. .form-control:focus,
  19. .btn-check:focus+.btn,
  20. .btn:focus {
  21. box-shadow: none !important;
  22. }
  23. .text-primary {
  24. color: #EE7800 !important;
  25. }
  26. .border-primary {
  27. border-color: #EE7800 !important;
  28. }
  29. .btn-outline-primary {
  30. color: #EE7800;
  31. border-color: #EE7800;
  32. &:hover {
  33. color: #fff;
  34. background-color: #EE7800;
  35. border-color: #EE7800;
  36. }
  37. }
  38. .pagination {
  39. border-radius: 5px;
  40. overflow: hidden;
  41. a {
  42. color: #727679;
  43. transition: all .3s;
  44. &:hover {
  45. color: #fff;
  46. background-color: #EE7800;
  47. }
  48. }
  49. .page-link {
  50. padding: .75rem 1rem;
  51. border: none;
  52. &:focus {
  53. z-index: 3;
  54. color: #727679;
  55. background-color: #fff;
  56. box-shadow: none;
  57. }
  58. }
  59. }
  60. .list-pagination {
  61. .page-item.active .page-link {
  62. color: #fff;
  63. background-color: #EE7800;
  64. border-color: #EE7800;
  65. &:focus {
  66. box-shadow: none;
  67. }
  68. }
  69. .page-link.hidden {
  70. display: none;
  71. }
  72. }
  73. /* Bootstrap End */
  74. /* Navbar Start */
  75. #navbar {
  76. position: sticky;
  77. top: 0;
  78. z-index: 1000;
  79. &.show {
  80. position: fixed !important;
  81. overflow-y: auto;
  82. overflow-x: hidden;
  83. width: 100%;
  84. height: 100%;
  85. z-index: 2000;
  86. .navbar {
  87. padding-bottom: 0;
  88. }
  89. }
  90. .navbar {
  91. z-index: 100;
  92. background-color: white !important;
  93. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  94. @media (max-width: 991px) {
  95. // box-shadow: none;
  96. }
  97. .container-fluid {
  98. padding: 0 2.5rem;
  99. @media (max-width: 1400px) {
  100. padding: 0 1.5rem;
  101. }
  102. @media (max-width: 1200px) {
  103. padding: 0 1rem;
  104. }
  105. @media (max-width: 991px) {
  106. padding: 0;
  107. }
  108. }
  109. .navbar-nav {
  110. .nav-item {
  111. @media (max-width: 1400px) {
  112. margin: 0;
  113. }
  114. .nav-link {
  115. padding: 1.5rem 1.2rem;
  116. position: relative;
  117. font-size: 1.125rem;
  118. cursor: pointer;
  119. color: #34404b;
  120. border-bottom: 4px solid transparent;
  121. @media (max-width: 1400px) {
  122. padding: 1.5rem .8rem;
  123. font-size: 1rem;
  124. }
  125. @media (max-width: 1200px) {
  126. padding: 1.5rem .5rem;
  127. font-size: .875rem;
  128. }
  129. @media (max-width: 991px) {
  130. padding: 1rem 0;
  131. font-size: 1rem;
  132. border-bottom: none;
  133. }
  134. &:hover {
  135. border-bottom: 4px solid #ee7800;
  136. @media (max-width: 991px) {
  137. border-bottom: none;
  138. }
  139. }
  140. .expand i {
  141. color: #D3D3D3;
  142. }
  143. }
  144. }
  145. li {
  146. @media (max-width: 991px) {
  147. border-bottom: 1px solid #F4F4F4;
  148. }
  149. &:last-child {
  150. @media (max-width: 991px) {
  151. border-bottom: none;
  152. }
  153. }
  154. }
  155. }
  156. @media (min-width: 991px) {
  157. li.dropdown:hover>.dropdown-menu {
  158. display: block;
  159. }
  160. }
  161. .dropdown-level-width {
  162. min-width: 13.5rem;
  163. li {
  164. margin: 5px 0;
  165. }
  166. }
  167. .search-btn {
  168. border: none;
  169. background: transparent;
  170. img {
  171. margin-bottom: -3px;
  172. }
  173. }
  174. .hover-block {
  175. .nav-link {
  176. border-bottom: none !important;
  177. &:hover a,
  178. &:hover p {
  179. color: #ee7800;
  180. }
  181. }
  182. }
  183. .dropdown-sub {
  184. @media (max-width: 991px) {
  185. padding: 5px 0;
  186. padding-left: 45px;
  187. }
  188. &:first-child {
  189. @media (max-width: 991px) {
  190. border-top: 1px solid #F4F4F4;
  191. }
  192. }
  193. &:hover {
  194. .dropdown-menu {
  195. @media (min-width: 991px) {
  196. display: block;
  197. }
  198. }
  199. .submenu,
  200. &>:hover>a {
  201. color: #ee7800;
  202. }
  203. }
  204. p {
  205. font-size: 16px;
  206. }
  207. .submenu {
  208. color: #34404b;
  209. }
  210. .dropdown-menu {
  211. top: -9px !important;
  212. left: 213px;
  213. &>li:hover>a {
  214. color: #ee7800;
  215. }
  216. }
  217. }
  218. .dropdown-item {
  219. padding: .25rem 1.2rem;
  220. @media (max-width: 991px) {
  221. padding: .5rem;
  222. }
  223. &:hover {
  224. background-color: #fff;
  225. }
  226. }
  227. .dropdown-menu {
  228. @media (max-width: 991px) {
  229. border: none;
  230. }
  231. }
  232. .logo {
  233. width: 130px;
  234. @media (max-width: 1200px) {
  235. width: 115px;
  236. }
  237. @media (max-width: 991px) {
  238. width: 130px;
  239. }
  240. }
  241. .search-text {
  242. color: #ee751b;
  243. }
  244. .renovation-btn {
  245. display: block;
  246. color: #ee751b;
  247. background: #fff;
  248. border: 1px solid #ee751b;
  249. border-radius: 3px;
  250. padding: 10px 20px;
  251. margin-left: 50px;
  252. @media (max-width: 1200px) {
  253. padding: 10px 15px;
  254. margin-left: 20px;
  255. font-size: 0.875rem;
  256. }
  257. @media (max-width: 991px) {
  258. font-size: 1rem;
  259. }
  260. }
  261. }
  262. }
  263. .navbar-toggler {
  264. border-color: transparent !important;
  265. &:focus {
  266. box-shadow: none;
  267. }
  268. }
  269. .shadow-item {
  270. position: absolute;
  271. display: none;
  272. height: 3px;
  273. top: 53px;
  274. width: 100vw;
  275. right: 0;
  276. left: 0;
  277. margin: auto;
  278. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  279. border-bottom: 1px solid #ccc;
  280. @media (max-width: 991px) {
  281. display: block;
  282. }
  283. }
  284. #app_user {
  285. .user-avatar {
  286. height: 30px;
  287. width: 30px;
  288. border-radius: 100px;
  289. }
  290. .dropdown:hover .dropdown-menu {
  291. display: block;
  292. }
  293. .dropdown-toggle::after {
  294. display: none !important;
  295. }
  296. }
  297. /* Navbar End */
  298. /* Footer Start */
  299. .footer {
  300. padding: 3rem;
  301. background-color: #f4f4f4;
  302. box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  303. @media (max-width: 767px) {
  304. padding: 2rem;
  305. }
  306. @media (max-width: 575px) {
  307. padding: 2rem 1rem;
  308. }
  309. h2 {
  310. text-align: center;
  311. border-top: 1px solid #d1d2d3;
  312. margin-top: 50px;
  313. padding-top: 30px;
  314. color: #707070;
  315. font-size: 16px;
  316. font-weight: 300;
  317. letter-spacing: .05rem;
  318. line-height: 1.5;
  319. }
  320. h4 {
  321. font-size: 1.375rem;
  322. font-weight: 500;
  323. color: #797979;
  324. text-align: center;
  325. margin-bottom: 50px;
  326. @media (max-width: 991px) {
  327. text-align: left;
  328. margin-bottom: 20px;
  329. }
  330. }
  331. .about-list,
  332. .follow-list,
  333. .more-list {
  334. @media (max-width: 991px) {
  335. display: flex;
  336. justify-content: center;
  337. }
  338. section {
  339. @media (max-width: 991px) {
  340. width: 300px;
  341. }
  342. }
  343. }
  344. .follow-list,
  345. .more-list {
  346. padding: 0;
  347. overflow: hidden;
  348. position: relative;
  349. @media (max-width: 991px) {
  350. margin-top: 30px;
  351. padding-top: 30px;
  352. border-top: 1px solid #989898;
  353. }
  354. }
  355. .about-list {
  356. a {
  357. color: #707070;
  358. transition: all .3s;
  359. &:hover {
  360. opacity: .8;
  361. }
  362. }
  363. img {
  364. width: 20px;
  365. height: 20px;
  366. margin-right: 7px;
  367. }
  368. ul {
  369. letter-spacing: .05em;
  370. li {
  371. margin: 5px 0;
  372. @media (max-width: 991px) {
  373. margin: 0;
  374. height: 30px;
  375. }
  376. span {
  377. color: #ea068c;
  378. }
  379. }
  380. }
  381. section {
  382. @media (max-width: 991px) {
  383. width: 300px;
  384. }
  385. }
  386. }
  387. .follow-list {
  388. .media {
  389. display: flex;
  390. a {
  391. display: block;
  392. margin: 0 3px;
  393. position: relative;
  394. }
  395. .media-item {
  396. &.after {
  397. position: absolute;
  398. top: 0;
  399. left: 0;
  400. opacity: 0;
  401. }
  402. }
  403. }
  404. img {
  405. width: 45px;
  406. height: 45px;
  407. margin-right: 5px;
  408. transition: all .3s;
  409. @media (max-width: 1200px) {
  410. width: 40px;
  411. height: 40px;
  412. }
  413. }
  414. }
  415. .more-list {
  416. a {
  417. display: inline-block;
  418. margin: 5px;
  419. padding-bottom: 5px;
  420. color: #797979;
  421. border-bottom: 1px solid;
  422. transition: all .3s;
  423. &:hover {
  424. opacity: .8;
  425. }
  426. }
  427. .subscriber-item {
  428. width: 100%;
  429. max-width: 300px;
  430. margin: auto;
  431. display: flex;
  432. flex-direction: column;
  433. border: 2px solid #34404b;
  434. &:hover {
  435. border: 2px solid #EE7800;
  436. button {
  437. background-color: #EE7800;
  438. }
  439. }
  440. input {
  441. padding: 10px;
  442. border: none;
  443. &:focus-visible {
  444. outline: none;
  445. }
  446. }
  447. ::placeholder {
  448. text-align: center;
  449. }
  450. button {
  451. padding: 15px;
  452. border: none;
  453. color: #fff;
  454. background-color: #34404b;
  455. transition: all .1s;
  456. }
  457. .spinner-border {
  458. display: none;
  459. &.show {
  460. display: block;
  461. }
  462. }
  463. &.input-error {
  464. border-color: #ff5252;
  465. button {
  466. background-color: #ff5252;
  467. }
  468. }
  469. }
  470. .link {
  471. max-width: 280px;
  472. display: flex;
  473. flex-wrap: wrap;
  474. justify-content: center;
  475. @media (max-width: 991px) {
  476. max-width: 310px;
  477. justify-content: start;
  478. }
  479. }
  480. }
  481. }
  482. /* Footer End */
  483. /* searchModal Start */
  484. .search-modal {
  485. letter-spacing: 1px;
  486. .modal-dialog {
  487. @media (max-width: 991px) {
  488. max-width: 100%;
  489. }
  490. }
  491. .modal-content {
  492. border: none;
  493. background: transparent;
  494. .input-group {
  495. height: 50px;
  496. .input-group-text {
  497. display: flex;
  498. align-items: center;
  499. padding: 0.5rem 2rem !important;
  500. margin-bottom: 0;
  501. color: #fff;
  502. text-align: center;
  503. white-space: nowrap;
  504. background-color: #ee7800;
  505. border: 2px solid #ee7800;
  506. line-height: 1.5;
  507. border-radius: 0.3rem;
  508. cursor: pointer;
  509. }
  510. }
  511. }
  512. .keyword-list {
  513. display: flex;
  514. align-items: center;
  515. padding: 0 20px;
  516. ul {
  517. margin: 0;
  518. padding: 0;
  519. display: flex;
  520. flex-wrap: wrap;
  521. color: #fff;
  522. li {
  523. margin: 5px 10px 5px 0;
  524. cursor: pointer;
  525. transition: all 0.3s;
  526. &:hover {
  527. opacity: 0.8;
  528. }
  529. }
  530. }
  531. span {
  532. color: #fff;
  533. margin-right: 10px;
  534. }
  535. }
  536. }
  537. .modal-backdrop.show {
  538. opacity: 0.7 !important;
  539. }
  540. /* searchModal End */
  541. /* 頂部輪播 Start */
  542. .top-carousel {
  543. padding: 1rem 0;
  544. background-color: rgb(202, 202, 202);
  545. transition-property: height;
  546. transition-duration: 300ms;
  547. .slick-next {
  548. right: 25px;
  549. }
  550. .slick-prev {
  551. left: 25px;
  552. }
  553. .slick-prev,
  554. .slick-next {
  555. position: absolute;
  556. top: 50%;
  557. z-index: 100;
  558. border: none;
  559. background: transparent;
  560. &::before {
  561. display: none;
  562. }
  563. }
  564. .bullet-list {
  565. position: absolute;
  566. bottom: 13px;
  567. width: 1276px;
  568. max-width: 100%;
  569. box-sizing: border-box;
  570. display: flex;
  571. z-index: 10;
  572. background-color: rgba(0, 0, 0, 0.1);
  573. @media (max-width: 991px) {
  574. bottom: 0;
  575. }
  576. .bullet {
  577. position: relative;
  578. width: 100%;
  579. height: 3px;
  580. background-color: rgba(0, 0, 0, 0.1);
  581. flex: 1 1 auto;
  582. opacity: 1;
  583. &::after {
  584. content: "";
  585. background: #ee7800;
  586. position: absolute;
  587. width: 0;
  588. height: 100%;
  589. left: 0;
  590. top: 0;
  591. border-radius: 2px;
  592. }
  593. }
  594. }
  595. .bullet-active::after {
  596. width: 0;
  597. -webkit-animation-name: progress;
  598. animation-name: progress;
  599. -webkit-animation-duration: 4s;
  600. animation-duration: 4s;
  601. -webkit-animation-timing-function: linear;
  602. animation-timing-function: linear;
  603. }
  604. @keyframes progress {
  605. 0% {
  606. width: 0%;
  607. }
  608. 25% {
  609. width: 25%;
  610. }
  611. 50% {
  612. width: 50%;
  613. }
  614. 75% {
  615. width: 75%;
  616. }
  617. 100% {
  618. width: 100%;
  619. }
  620. }
  621. @-webkit-keyframes progress {
  622. 0% {
  623. width: 0%;
  624. }
  625. 25% {
  626. width: 25%;
  627. }
  628. 50% {
  629. width: 50%;
  630. }
  631. 75% {
  632. width: 75%;
  633. }
  634. 100% {
  635. width: 100%;
  636. }
  637. }
  638. .close-btn {
  639. position: absolute;
  640. top: 0;
  641. right: 20px;
  642. width: 55px;
  643. height: 35px;
  644. background-color: hsla(0, 0%, 100%, 0.66);
  645. border-radius: 0 0 50px 50px;
  646. color: #888;
  647. border: none;
  648. outline: none;
  649. font-size: 11px;
  650. box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
  651. line-height: 12px;
  652. z-index: 3;
  653. p {
  654. margin-top: -3px;
  655. }
  656. }
  657. &.banner-close {
  658. height: 0;
  659. padding: 0;
  660. overflow: hidden;
  661. transition-property: height;
  662. transition-duration: 300ms;
  663. }
  664. .container-fluid {
  665. background-color: rgb(202, 202, 202);
  666. }
  667. }
  668. /* 頂部輪播 End */
  669. /* 左下按紐 Start */
  670. #btn-box {
  671. display: flex;
  672. flex-direction: column;
  673. position: fixed;
  674. right: 15px;
  675. bottom: 15px;
  676. z-index: 10;
  677. font-size: 32px;
  678. cursor: pointer;
  679. @media (max-width: 767px) {
  680. bottom: 75px;
  681. }
  682. // 滑動按鈕
  683. .calculator-btn,
  684. .shop-btn {
  685. p {
  686. display: none;
  687. width: 0px;
  688. margin-right: -5px;
  689. overflow: hidden;
  690. color: #ee751b;
  691. font-size: 16px;
  692. letter-spacing: 1px;
  693. transition: all .6s;
  694. }
  695. &.show {
  696. a {
  697. img {
  698. width: 22px;
  699. margin-left: 3px;
  700. position: relative;
  701. left: 8px;
  702. }
  703. p {
  704. display: inline-block;
  705. width: 100%;
  706. white-space: nowrap;
  707. }
  708. }
  709. }
  710. }
  711. .calculator-btn {
  712. &.show {
  713. width: 130px;
  714. margin-left: -85px;
  715. }
  716. }
  717. .shop-btn {
  718. &.show {
  719. width: 95px;
  720. margin-left: -50px;
  721. }
  722. }
  723. a {
  724. color: #000;
  725. display: flex;
  726. justify-content: center;
  727. align-items: center;
  728. }
  729. button {
  730. width: 45px;
  731. height: 45px;
  732. margin: 5px 0;
  733. border: none;
  734. border-radius: 5px;
  735. box-shadow: 0px 2px 3px #ccc;
  736. background: rgba(255, 255, 255, 0.9);
  737. &:hover {
  738. transition: all .5s;
  739. background: rgb(255, 255, 255);
  740. }
  741. &:hover img {
  742. filter: invert(50%) sepia(50%) saturate(4600%) hue-rotate(365deg) brightness(100%) contrast(100%);
  743. }
  744. img {
  745. width: 20px;
  746. }
  747. }
  748. .gotop-btn {
  749. img {
  750. display: block;
  751. margin: auto;
  752. }
  753. }
  754. }
  755. .mb-menu {
  756. display: flex;
  757. padding: 13px 0 8px;
  758. position: fixed;
  759. right: 0;
  760. left: 0;
  761. bottom: 0;
  762. z-index: 1000;
  763. transition: all .3s;
  764. background-color: #fff;
  765. box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  766. a {
  767. display: flex;
  768. flex-direction: column;
  769. align-items: center;
  770. justify-content: center;
  771. h4 {
  772. margin: 5px auto 0;
  773. color: #34404B;
  774. font-size: 16px;
  775. }
  776. img {
  777. width: 20px;
  778. height: 20px;
  779. }
  780. }
  781. }
  782. /* 左下按紐 End */
  783. /* 讀取圖示 */
  784. .spinners {
  785. display: none;
  786. @keyframes rotate {
  787. from {
  788. transform: rotate(0deg);
  789. }
  790. to {
  791. transform: rotate(360deg);
  792. }
  793. }
  794. img {
  795. animation: rotate 2s linear infinite;
  796. }
  797. }